最新のWeb開発のチュートリアル
 

ASP GETFILE方法


<完全なファイルシステムオブジェクトのオブジェクト参照

GETFILEメソッドは、指定したパスのファイルオブジェクトを返します。

構文

FileSystemObject.GetFile(path)

パラメーター 説明
path 必須。 特定のファイルへのパス

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\test\test.htm")
Response.Write("The file was last modified on: ")
Response.Write(f.DateLastModified)
set f=nothing
set fs=nothing
%>

Output:

The file was last modified on 01/01/20 4:23:56 AM

<完全なファイルシステムオブジェクトのオブジェクト参照