SetVolumeName(drvPath, newName)
Last updated August 2, 2001
Version: 1 | Requires: ColdFusion 5 | Library: FileSysLib
Description:
Sets the volume name for the specified drive. Because this function uses COM, it is only supported in the Windows version of ColdFusion.
Return Values:
Returns True.
Example:
Parameters:
| Name | Description | Required |
|---|---|---|
| drvPath | Drive letter (c, c:, c:\) or network share (\\computer\share). | Yes |
| newName | New volume name for the drive. | Yes |
Full UDF Source:
<cfscript>
/**
* Sets the volume name for the specified drive. (Windows only)
* Sample code:
* <CFSET SetVolumeName("c", "System")>
*
* @param drvPath Drive letter (c, c:, c:\) or network share (\\computer\share).
* @param newName New volume name for the drive.
* @return Returns True.
* @author Rob Brooks-Bilson (rbils@amkor.com)
* @version 1, August 2, 2001
*/
function SetVolumeName(drvPath, newName)
{
Var fso = CreateObject("COM", "Scripting.FileSystemObject");
Var drive = fso.GetDrive(drvPath);
drive.VolumeName = newName;
Return True;
}
</cfscript>
Search CFLib.org
Latest Additions
Dave Anderson added
iniToStruct
20 day(s) ago
Dave Anderson added
deDupeArray
20 day(s) ago
Richard added
dice
22 day(s) ago
Isaac Dealey added
getRelative
a while ago
Top Rated
backupDatabase
Rated 5.0, 22 time(s)
indentXml
Rated 5.0, 10 time(s)
generateSsccAsn
Rated 5.0, 4 time(s)
highlightAndCrop
Rated 5.0, 4 time(s)