ASP Attributes 屬性
asp attributes 屬性

attributes 屬性用于設置或返回指定文件或文件夾的屬性。
語法
fileobject.attributes[=newattributes]
folderobject.attributes[=newattributes]
folderobject.attributes[=newattributes]
參數 | 描述 |
---|---|
newattributes | 可選的。規定文件或文件夾的屬性值。
可采用下列值之一或者下列值的組合: 0 = 普通文件。 |
針對 file 對象的實例
<%
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
%>
輸出:
the attributes of the file are: 32
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
%>
輸出:
the attributes of the file are: 32
針對 folder 對象的實例
<%
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
%>
輸出:
the attributes of the folder are: 16
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
%>
輸出:
the attributes of the folder are: 16

相關文章
- ASP Response 對象
- ASP Request 對象
- ASP ASPError 對象
- ASP Content Rotator
- ASP 教程
- ASP WriteBlankLines 方法
- ASP Attributes 屬性
- ASP CreateTextFile 方法
- ASP Key 屬性
- ASP Remove 方法
- ASP CacheControl 屬性
- ASP Flush 方法
- ASP Redirect 方法
- ASP QueryString 集合
- ASP Drives 屬性
- ASP DeleteFile 方法
- ASP DriveExists 方法
- ASP GetParentFolderName 方法
- ASP GetSpecialFolder 方法
- ASP GetTempName 方法