Type 属性

返回文件或文件夹的类型信息。例如,对于扩展名为 .TXT 的文件,返回“Text Document”。

object.Type

object 应为 File 或 Folder 对象的名称。

说明

以下代码举例说明如何使用 Type 属性返回文件夹的类型。在此示例中,试图向过程提供“回收站”或其他唯一文件夹的路径。

 Function ShowFolderType(filespec)
    Dim fso, f, s
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set f = fso.GetFolder(filespec)
    s = UCase(f.Name) & " 的类型为 " & f.Type 
End Function
ShowFolderType = s

请参阅

Attributes 属性 | DateCreated 属性 | DateLastAccessed 属性 | DateLastModified 属性 | Drive 属性 | Files 属性 | IsRootFolder 属性 | Name 属性 | ParentFolder 属性 | Path 属性 | ShortName 属性 | ShortPath 属性 | Size 属性 | SubFolders 属性

应用于:File 对象 | Folder 对象

www.51windows.Net