脚本运行时库  

Path 属性

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

object.Path 

object 总是为 FileFolderDrive 对象。

说明

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

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

[JScript]
function ShowFileAccessInfo(filespec)
{
   var fso, d, f, s;
   fso = new ActiveXObject("Scripting.FileSystemObject");
   f = fso.GetFile(filespec);
   s = f.Path.toUpperCase() + "<br>";
   s += "Created:" + f.DateCreated + "<br>";
   s += "Last Accessed:" + f.DateLastAccessed + "<br>";
   s += "Last Modified:" + f.DateLastModified   
   return(s);
}
[VBScript]
Function ShowFileAccessInfo(filespec)
   Dim fso, d, f, s
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set f = fso.GetFile(filespec)
   s = UCase(f.Path) & "<BR>"
   s = s & "Created:" & f.DateCreated & "<BR>"
   s = s & "Last Accessed:" & f.DateLastAccessed & "<BR>"
   s = s & "Last Modified:" & f.DateLastModified   
   ShowFileAccessInfo = s
End Function

请参阅

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 对象