ASP Attributes 属性
asp attributes 属性
完整的 file 对象参考手册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
完整的 file 对象参考手册
相关文章
- 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 方法