La propiedad ASP VolumeName se utiliza para establecer o devolver el nombre de volumen de la unidad especificada.
Sintaxis:
DriveObject.VolumeName[=newname]
Parámetros: esta propiedad tiene un solo parámetro como se mencionó anteriormente y se describe a continuación:
- newname: Especifica el nuevo nombre que debe establecerse para la unidad. Es un parámetro opcional.
Ejemplo: El siguiente código muestra la propiedad ASP Drive.VolumeName.
ASP
<% dim fs,d1,d2 set fs=Server.CreateObject("Scripting.FileSystemObject") 'Getting the drive set d1=fs.GetDrive("D:") 'Getting the name of the drive Response.Write("The volume name is: " & d1.VolumeName) 'Getting the drive set d2=fs.GetDrive("F:") 'Getting the name of the drive Response.Write("<br>The volume name is: " & d2.VolumeName) set d1=nothing set d2=nothing set fs=nothing %>
Producción:
The volume name is: Windows The volume name is: Software
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA