<Pełna FileSystemObject Object Reference
Sposób DriveExists zwraca wartość logiczną, która wskazuje, czy określony napęd istnieje. Zwraca True jeżeli napęd istnieje i false jeśli nie.
Składnia
FileSystemObject.DriveExists(drive)
Parametr | Opis |
---|---|
drive | Wymagany. Litera dysku lub ścieżka pełna specyfikacja |
Przykład
<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.DriveExists("c:")=true then
response.write("Drive c: exists!")
else
response.write("Drive c: does not exist.")
end If
set fs=nothing
%>
<Pełna FileSystemObject Object Reference