<Complete Reference drive Obyek
Properti FileSystem mengembalikan sistem file yang digunakan untuk drive tertentu.
Properti ini akan mengembalikan salah satu dari berikut:
- FAT - untuk removable drive
- CDFS - untuk CD-ROM drive
- FAT, FAT32 atau NTFS - untuk hard disk pada Windows 2000 atau Windows NT
- FAT atau FAT32 - untuk hard disk pada Windows 9x
Sintaksis
DriveObject.FileSystem
Contoh
<%
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
<Complete Reference drive Obyek