亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

ASP Attributes 屬性

定義和用法

Attributes 屬性可用來設置或返回指定的文件或文件夾的屬性。

語法:

FileObject.Attributes[=newattributes] 
FolderObject.Attributes[=newattributes]
參數(shù) 描述
newattributes

可選的。規(guī)定文件或文件夾的屬性值。

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

  • 0 = 常規(guī)文件
  • 1 = 只讀文件
  • 2 = 隱藏文件
  • 4 = 系統(tǒng)文件
  • 16 = 文件夾或目錄
  • 32 = 自從上次備份,文件已經改變
  • 1024 = 鏈接或快捷方式
  • 2048 = 壓縮文件

實例

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