Microsoft JScript
ShareName Property
Language Reference
Version 3

See Also Applies To


Description
Returns the network share name for a specified drive.
Syntax
object.ShareName

The object is always 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:


function ShowDriveInfo(drvpath)
{
 var fs, d, s;
 fs = new ActiveXObject("Scripting.FileSystemObject");
 d = fs.GetDrive(fs.GetDriveName(fs.GetAbsolutePathName(drvpath)));
 s = "Drive " + d.DriveLetter + ": - " + d.ShareName;
 Response.Write(s);
}



Comments