최신 웹 개발 튜토리얼
 

ASP Attributes Property


<전체 폴더 객체 참조

속성 속성을 설정하거나 특정 파일이나 폴더의 속성이나 특성을 반환하는 데 사용됩니다.

통사론

FileObject.Attributes[=newattributes]

FolderObject.Attributes[=newattributes]

매개 변수 기술
newattributes 선택 과목. 지정 파일 또는 폴더에 대한 속성 값을.

다음 값 또는 다음 값의 조합을 사용할 수 있습니다 :

0 = 정상 파일
1 = 읽기 전용 파일
2 = 숨겨진 파일
4 = 시스템 파일
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
%>

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

<전체 폴더 객체 참조