当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP GetFile 方法
The GetFile method returns a File object for the specified path.
ASP GetFile的作用是返回指定路径的一个文件。
FileSystemObject.GetFile(path) |
Parameter参数 | Description描述 |
---|---|
path | Required. The path to a specific file 必要组件。规定文件的路径 |
<% dim fs,f set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.GetFile("c:testtest.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 |