当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


ASP GetFile用法及代码示例


ASP中的GetFile方法用于返回与指定路径中的文件相对应的File对象。它是FileSystem对象的预定义方法。

用法:

FileSystemObject.GetFile(path) 

参数值:

path:这是必填属性。它指定文件的路径。

示例代码:下面的代码演示了ASP GetFile方法。

ASP

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

输出

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

相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 ASP GetFile Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。