返回指定文件或文件夹所在驱动器的驱动器号。 只读。
object.Drive
object 应为 File 或 Folder 对象。
说明
下面的代码说明了 Drive 属性的用法:
function ShowFileAccessInfo(filespec){
var fso, f, s;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fso.GetFile(filespec);
s = f.Name + " on Drive " + f.Drive + "
";s += "
创建时间:" + f.DateCreated + "
";s += "
最近一次访问时间:" + f.DateLastAccessed + "
";s += "
最近一次修改时间:" + f.DateLastModified;
return(s);
}
请参阅
| | | | | | | | | | | | |
应用于: |