黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP Attributes 屬性

asp attributes 屬性

file 對(duì)象參考手冊(cè) 完整的 file 對(duì)象參考手冊(cè)

attributes 屬性用于設(shè)置或返回指定文件或文件夾的屬性。

語(yǔ)法

fileobject.attributes[=newattributes]

folderobject.attributes[=newattributes]

參數(shù) 描述
newattributes 可選的。規(guī)定文件或文件夾的屬性值。

可采用下列值之一或者下列值的組合:

0 = 普通文件。
1 = 只讀文件。
2 = 隱藏文件。
4 = 系統(tǒng)文件。
16 = 文件夾或目錄。
32 = 上次備份后已更改的文件。
1024 = 鏈接或快捷方式。
2048 = 壓縮文件。

針對(duì) file 對(duì)象的實(shí)例

<%
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

針對(duì) folder 對(duì)象的實(shí)例

<%
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 對(duì)象參考手冊(cè) 完整的 file 對(duì)象參考手冊(cè)
相關(guān)文章