Path 属性

返回指定文件、文件夹或驱动器的路径。

object.Path

object 总是为 FileFolderDrive 对象。

说明

驱动器字母后不包括根驱动器。 例如, C 驱动器的路径是 C:,而不是 C:\。

下面的代码通过 File 对象说明了 Path 属性的用法:

function ShowFileAccessInfo(filespec)
{
   var fso, d, f, s;
   fso = new ActiveXObject("Scripting.FileSystemObject");
   f = fso.GetFile(filespec);
   s = f.Path.toUpperCase() + "<br>";
   s += "创建时间: " + f.DateCreated + "<br>";
   s += "最近一次访问时间: " + f.DateLastAccessed + "<br>";
   s += "最近一次修改时间: " + f.DateLastModified   
   return(s);
}

请参阅

Attributes 属性 | AvailableSpace 属性 | DateCreated 属性 | DateLastAccessed 属性 | DateLastModified 属性 | Drive 属性 | DriveLetter 属性 | DriveType 属性 | Files 属性 | FileSystem 属性 | FreeSpace 属性 | IsReady 属性 | IsRootFolder 属性 | Name 属性 | ParentFolder 属性 | RootFolder 属性 | SerialNumber 属性 | ShareName 属性 | ShortName 属性 | ShortPath 属性 | Size 属性 | SubFolders 属性 | TotalSize 属性 | Type 属性 | VolumeName 属性
应用于: Drive 对象 | File 对象 | Folder 对象

NetPc