8.7.10 ShareName Property

Returns the network share name for a specified drive. This property is not currently supported on UNIX.
Syntax
object.ShareName
Arguments
- object
- A Drive object.
Remarks
If object is not a network drive, the ShareName property returns a zero-length string (""). The following code illustrates the use of the ShareName property:
Sub ShowDriveInfo(drvpath)
Dim fs, d, s
Set fs = CreateObject("Scripting.FileSystemObject")
Set d = fs.GetDrive(fs.GetDriveName(fs.GetAbsolutePathName(drvpath)))
s = "Drive " & d.DriveLetter & ": - " & d.ShareName
Response.Write s
End Sub
Copyright © 2000 Chili!Soft
|