ASP Attributes 属性
定义和用法
Attributes 属性可用来设置或返回指定的文件或文件夹的属性。
语法:
FileObject.Attributes[=newattributes] FolderObject.Attributes[=newattributes]
参数 | 描述 |
---|---|
newattributes |
可选的。规定文件或文件夹的属性值。 才采用下列的值之一或下列值的组合:
|
实例
<%
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