La propiedad ASP IsReady se usa para devolver un valor booleano que especifica si la unidad está lista o no. Devuelve verdadero si la unidad especificada está lista; de lo contrario, devuelve falso .
Sintaxis:
DriveObject.IsReady
Ejemplo: El siguiente código muestra la propiedad ASP Drive.IsReady.
ASP
<% dim fs,d,n set fs=Server.CreateObject("Scripting.FileSystemObject") 'Get the drive to be checked set d=fs.GetDrive("c:") n = "Drive " & d.DriveLetter & " is ready: " 'Check if the drive is ready if d.IsReady=true then n=n & "true" else n=n & "false" end if 'Write out the response Response.Write(n) set d=nothing set fs=nothing %>
Producción:
Drive C is ready: true
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA