Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

ASP 文件 对象


文件对象用于返回有关指定文件的信息。


更多示例

文件最后修改时间?
如何获取指定文件最后修改的日期和时间。

文件最后访问时间?
如何获取指定文件最后访问的日期和时间。

返回指定文件的属性
如何返回指定文件的属性。


文件对象

文件对象用于返回有关指定文件的信息。

要使用文件对象的属性和方法,您需要通过文件系统对象创建文件对象实例。首先,创建文件系统对象,然后通过文件系统对象的 GetFile 方法或文件夹对象的 Files 属性实例化文件对象。

以下代码使用文件系统对象的 GetFile 方法实例化文件对象,并使用 DateCreated 属性返回指定文件创建的日期

示例

<%
Dim fs,f
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.GetFile("c:\test.txt")
Response.Write("文件创建日期: " & f.DateCreated)
set f=nothing
set fs=nothing
%>
显示示例 »


文件对象的属性和方法描述如下

属性

属性 描述
Attributes 设置或返回指定文件的属性
DateCreated 返回指定文件创建的日期和时间
DateLastAccessed 返回指定文件最后访问的日期和时间
DateLastModified 返回指定文件最后修改的日期和时间
Drive 返回指定文件或文件夹所在的驱动器盘符
Name 设置或返回指定文件的名称
ParentFolder 返回指定文件的父文件夹对象
Path 返回指定文件的路径
ShortName 返回指定文件的短名称(8.3 命名约定)
ShortPath 返回指定文件的短路径(8.3 命名约定)
Size 返回指定文件的大小(以字节为单位)
Type 返回指定文件的类型

方法

方法 描述
Copy 将指定文件从一个位置复制到另一个位置
Delete 删除指定文件
Move 将指定文件从一个位置移动到另一个位置
OpenAsTextStream  打开指定文件并返回一个 TextStream 对象以访问文件

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.