<전체 파일 객체 참조
속성 속성을 설정하거나 특정 파일이나 폴더의 속성이나 특성을 반환하는 데 사용됩니다.
통사론
FileObject.Attributes[=newattributes]
FolderObject.Attributes[=newattributes]
매개 변수 | 기술 |
---|---|
newattributes | 선택 과목. 지정 파일 또는 폴더에 대한 속성 값을. 다음 값 또는 다음 값의 조합을 사용할 수 있습니다 : 0 = 정상 파일 |
파일 객체의 예
<%
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
%>
Output:
The attributes of the file are: 32
폴더 개체에 대한 예
<%
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
%>
Output:
The attributes of the folder are: 16
<전체 파일 객체 참조