<完整文件夾對象參考
Attributes屬性用於設置或者返回指定的文件或文件夾的屬性或屬性。
句法
FileObject.Attributes[=newattributes]
FolderObject.Attributes[=newattributes]
參數 | 描述 |
---|---|
newattributes | 可選的。 指定 屬性值的文件或文件夾。 可以採取以下任一值或以下值的組合: 0 =正常文件 |
例如,對於文件對象
<%
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
<完整文件夾對象參考