Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

JScript Drive Object ShareName Property

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

Syntax: JScript Drive Object ShareName Property

object.ShareName

Arguments: JScript Drive Object ShareName Property

object

A Drive object.

Remarks: JScript Drive Object ShareName Property

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 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.