최신 웹 개발 튜토리얼
 

ASP FileSystem Property


<전체 드라이브의 객체 참조

파일 시스템 속성은 지정된 드라이브에 사용중인 파일 시스템을 반환합니다.

이 속성은 다음 중 하나를 반환합니다 :

  • FAT - 이동식 드라이브에 대한
  • CDFS - CD-ROM 드라이브
  • FAT, FAT32 또는 NTFS - 하드 디스크의 Windows 2000 또는 Windows NT에
  • FAT 또는 FAT32 - 윈도우 9x의 하드 디스크

통사론

DriveObject.FileSystem

<%
dim fs,d
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("c:")
Response.Write("The file system in use is: " & d.FileSystem)
set d=nothing
set fs=nothing
%>

Output:

The file system in use is: NTFS

<전체 드라이브의 객체 참조