DateLastAccessed

(PWS4 IIS4 IIS5)
DateLastAccessed — 指定されたフォルダが最後にアクセスされたときの日付と時刻を返します。値の取得のみ可能です。

構文

object.DateLastAccessed

パラメータ

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

戻り値

フォルダの最終アクセス日を返します。

説明

オペレーティング システムがこの時刻情報の提供をサポートしていない場合は、何も取得されません。

JScript

1
2
3
4
5
6
7
8
9
10
11
function ShowFileAccessInfo(filespec)
{
   var fso, f, s;
   fso = new ActiveXObject("Scripting.FileSystemObject");
   f = fso.GetFile(filespec);
   s = filespec.toUpperCase() + "<br />";
   s += "作成日時 :" + f.DateCreated + "<br />";
   s += "最終アクセス日時 :" + f.DateLastAccessed + "<br />";
   s += "最終更新日時 : " + f.DateLastModified;
   return(s);
}

VBScript

1
2
3
4
5
6
7
8
9
10
Function ShowFileAccessInfo(filespec)
   Dim fso, f, s
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set f = fso.GetFile(filespec)
   s = UCase(filespec) & "<br />"
   s = s & "作成日時 : " & f.DateCreated & "<br />"
   s = s & "最終アクセス日時 : " & f.DateLastAccessed & "<br />"
   s = s & "最終更新日時 : " & f.DateLastModified
   ShowFileAccessInfo = s
End Function