最新的Web開發教程
 

ASP Attributes Property


<完整的文件對象參考

Attributes屬性用於設置或者返回指定的文件或文件夾的屬性或屬性。

句法

FileObject.Attributes[=newattributes]

FolderObject.Attributes[=newattributes]

參數 描述
newattributes 可選的。 指定 屬性值的文件或文件夾。

可以採取以下任一值或以下值的組合:

0 =正常文件
1 =只讀文件
2 =隱藏文件
4 =系統文件
16 =文件夾或目錄
上次備份32 =文件已經改變
1024 =鏈路或捷徑
2048 =壓縮文件

例如,對於文件對象

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\test.txt")
Response.Write("The attributes of the file are: ")
Response.Write(f.Attributes)
set f=nothing
set fs=nothing
%>

Output:

The attributes of the file are: 32

例如,對於文件夾對象

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
Response.Write("The attributes of the folder are: ")
Response.Write(fo.Attributes)
set fo=nothing
set fs=nothing
%>

Output:

The attributes of the folder are: 16

<完整的文件對象參考