<Complete FileSystemObject Object Reference
Il metodo DriveExists restituisce un valore booleano che indica se esiste un'unità specificata. Esso restituisce True se l'unità esiste e False in caso contrario.
Sintassi
FileSystemObject.DriveExists(drive)
Parametro | Descrizione |
---|---|
drive | Necessario. Una lettera di unità o una specifica percorso completo |
Esempio
<%
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
%>
<Complete FileSystemObject Object Reference