Type

(PWS4 IIS4 IIS5)
Type — フォルダの種類に関する情報を返します。

構文

object.Type

パラメータ

object
Folder オブジェクトを指定します。

戻り値

フォルダの種類を返します。

説明

フォルダの種類を返します。
「ファイル フォルダ」という文字列を返します。

JScript

1
2
3
4
5
6
7
8
9
10
11
12
13
function ShowFileType(filespec)
{
   var fso, f, s;
   fso = new ActiveXObject("Scripting.FileSystemObject");
   if (fso.FolderExists(filespec))
      f = fso.GetFolder(filespec);
   else if (fso.FileExists(filespec))
      f = fso.GetFile(filespec);
   else
      s = "ファイルまたはフォルダが存在しません。";
   s = f.Name + " は、" + f.Type + " です。";
   return(s);
}

VBScript

1
2
3
4
5
6
7
Function ShowFolderType(filespec)
   Dim fso, f, s
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set f = fso.GetFolder(filespec)
   s = UCase(f.Name) & " は、" & f.Type & " です。"
   ShowFolderType = s
End Function