ASP 파일 시스템 속성


❮ 전체 드라이브 개체 참조

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

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

  • FAT - 이동식 드라이브용
  • CDFS - CD-ROM 드라이브용
  • FAT, FAT32 또는 NTFS - Windows 2000 또는 Windows NT의 하드 디스크용
  • FAT 또는 FAT32 - Windows 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

❮ 전체 드라이브 개체 참조