代码搜索:Scripting
找到约 2,777 项符合「Scripting」的源代码
代码结果 2,777
www.eeworm.com/read/113072/15471092
txt 308.txt
GetDrive 方法
Microsoft® Visual Basic® Scripting Edition
GetDrive 方法
请参阅
语言参考
GetAbsolutePathName 方法
GetBaseName 方法
GetDriveName 方法
GetExtensionName 方法
GetFile 方法
GetFileName 方法
www.eeworm.com/read/113072/15471263
txt 317.txt
GetFile 方法
Microsoft® Visual Basic® Scripting Edition
GetFile 方法
请参阅
语言参考
GetAbsolutePathName 方法
GetBaseName 方法
GetDrive 方法
GetDriveName 方法
GetExtensionName 方法
GetFileName 方法
www.eeworm.com/read/104928/15681158
vbs sol5-9.vbs
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder1 = objFSO.CreateFolder("c:\data")
'create a folder below the new data folder using the Folders object抯 Add method
Set objFold
www.eeworm.com/read/388532/8603295
html 18.4.1 createtextfile方法.html
var oFso=new ActiveXObject("scripting.FileSystemObject");
try
{
var oTxt=oFso.CreateTextFile("d:\\test.txt",true);
oTxt.WriteLine("测试一下");
oTxt.Close();
www.eeworm.com/read/388532/8603339
html 18.1.1 isready属性.html
var objFso=new ActiveXObject("Scripting.FileSystemObject");
//获取Drives结合
var objDrvs=objFso.Drives
//创建一个结合枚举对象
var drvs = new Enumerator(objDrvs);
with (document)
{
w
www.eeworm.com/read/419287/10877111
js jszip.js
/*cscript.exe执行*/
/***********
文件操作函数
***********/
fso=new ActiveXObject("Scripting.FileSystemObject");
function wfile(fname,s){ //写文件
var fp=fso.CreateTextFile(fname,true,false);
fp.Write(