当前位置: 首页 > 图文教程 > 脚本技术 > VBScript > VBS教程:属性-Type 属性

VBScript
VBS教程:函数-TimeSerial 函数
VBS教程:函数-Timer 函数
VBS教程:函数-Time 函数
VBS教程:函数-Tan 函数
VBS教程:函数-StrReverse 函数
VBS教程:函数-String 函数
VBS教程:函数-StrComp 函数
VBS教程:函数-Sqr 函数
VBS教程:函数-Split 函数
VBS教程:函数-Space 函数
VBS教程:函数-Sin 函数
VBS教程:函数-Sgn 函数
VBS教程:函数-SetLocale 函数
VBS教程:函数-Second 函数
VBS教程:函数-ScriptEngineMinorVersion 函数
VBS教程:函数-ScriptEngineMajorVersion 函数
VBS教程:函数-Mid 函数
VBS教程:函数-数学函数
VBS教程:函数-LTrim、RTrim 和 Trim 函数
VBS教程:函数-Log 函数

VBScript 中的 VBS教程:属性-Type 属性


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 86 ::
收藏到网摘: n/a

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 FunctionShowFolderType = s