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 文件夹 对象


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


文件夹对象

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

要使用文件夹对象的属性和方法,您必须通过 FileSystemObject 对象创建文件夹对象的实例。首先,创建一个 FileSystemObject 对象,然后通过 FileSystemObject 对象的 GetFolder 方法实例化文件夹对象。

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

<%
Dim fs,fo
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set fo=fs.GetFolder("c:\test")
Response.Write("文件夹创建日期: " & fo.DateCreated)
set fo=nothing
set fs=nothing
%>

输出

文件夹创建日期: 2008/10/22 上午 10:01:19

文件夹对象的集合、属性和方法如下所述。

集合

集合 描述
Files 返回指定文件夹中所有文件的集合。
SubFolders 返回指定文件夹中所有子文件夹的集合。


属性

属性 描述
Attributes 设置或返回指定文件夹的属性。
DateCreated 返回指定文件夹的创建时间。
DateLastAccessed 返回指定文件夹的上次访问时间。
DateLastModified 返回指定文件夹的上次修改时间。
Drive 返回指定文件夹所在的驱动器盘符。
IsRootFolder 如果文件夹是根文件夹,则返回 True,否则返回 False。
Name 设置或返回指定文件夹的名称。
ParentFolder 返回指定文件夹的父文件夹。
Path 返回指定文件夹的路径。
ShortName 返回指定文件夹的短名称(8.3 命名约定)。
ShortPath 返回指定文件夹的短路径(8.3 命名约定)。
Size 返回指定文件夹的大小。
Type 返回指定文件夹的类型。

方法

方法 描述
Copy 将指定文件夹从一个位置复制到另一个位置。
Delete 删除指定文件夹。
Move 将指定文件夹从一个位置移动到另一个位置。
CreateTextFile 在指定文件夹中创建一个新的文本文件,并返回一个 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.