Proprietà ASP VolumeName


❮ Riferimento completo dell'oggetto di azionamento

La proprietà VolumeName imposta o restituisce il nome del volume di un'unità specificata.


Sintassi

DriveObject.VolumeName[=newname]

Parameter Description
newname Optional. Sets the new name of the specified drive

Esempio

<%
dim fs,d
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("c:")
Response.Write("The volume name is: " & d.VolumeName)
set d=nothing
set fs=nothing
%>

❮ Riferimento completo dell'oggetto di azionamento