代码搜索:Scripting
找到约 2,777 项符合「Scripting」的源代码
代码结果 2,777
www.eeworm.com/read/104928/15681152
vbs sol5-2.vbs
Dim objFSO, objDrive
Set objFSO = CreateObject("Scripting.FileSystemObject")
For Each objDrive In objFSO.Drives
'check if drive is ready,
If objDrive.IsReady Then
Wscript.Echo objDri
www.eeworm.com/read/104928/15681153
vbs sol5-15.vbs
Dim objFSO, objFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.DeleteFile "d:\data\report.doc"
Set objFile = objFSO.GetFile("d:\data\payroll.xls")
objFile.Delete
www.eeworm.com/read/104928/15681154
vbs sol5-1.vbs
Dim objFSO, objDrive
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objDrive = objFSO.GetDrive("A")
'check if drive is ready,
If objDrive.IsReady Then
'drive is ready, do somethin
www.eeworm.com/read/104928/15681156
vbs sol5-14.vbs
Dim objFSO, objFolder
Set objFSO = Wscript.CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.GetFolder("C:\Data")
'copy items from folder to network folder
objFolder.Copy"H:\Data"
www.eeworm.com/read/104928/15681159
vbs sol5-13.vbs
Dim objFSO, objFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.GetFile("C:\Data\report.doc")
'copy items from folder to network folder
objFile.Copy "H:\Data\"
www.eeworm.com/read/104928/15681163
vbs sol5-16.vbs
Dim objFSO, objTextFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objTextFile = objFSO.CreateTextFile("D:\data.txt")
objTextFile.WriteLine "Write a line to a file with end of l
www.eeworm.com/read/104928/15681164
vbs sol5-7.vbs
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.GetFile("d:\data\report.doc")
objFile.Name = "newreport.doc"
www.eeworm.com/read/104928/15681166
vbs sol5-6.vbs
Dim objFSO
'create an instance of an FSO object
Set objFSO = CreateObject("Scripting.FileSystemObject")
'check if the specified file exists
If objFSO.FileExists("d:\data\report.doc") Then
www.eeworm.com/read/104413/15694924
txt jrun常见问题回答 (jrun 中文 faq).txt
作者:jeru
email: jeru@163.net
日期:2000-12-31 12:15:46
JRun常见问题回答
什么是并发(Concurrency)?
并发指JRun在同一时间运行多个servlet的能力。JRun通过运用Java内建的多线程能力支持并发。多任务或多处理(Multi-tasking or Multi-processing)是并发的其他说法。该功能赋
www.eeworm.com/read/103949/15715873
txt 2.txt
操作完驱动器,接着就是来操作文件夹了。其中包括:提取文件夹信息、创建文件夹、删除文件夹、复制文件夹、移动文件夹等。下面就具体来看。
一、fso.GetFolder
一看就明白,是提取文件夹了。那具体是提取哪个文件夹呢?后面肯定要跟一个文件夹的路径。提取出来了再来显示该文件夹相关信息呢?是不是有要具体提取下去。所以,看程序:
1,getfldr.asp
...