Previous PageNext Page

7.13.10 ShareName Property

Returns the network share name for a specified drive. This property is not available under UNIX.
 

Syntax

object.ShareName

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:
 

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);

}


Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page