How can I change the friendly name of a mapped drive using the Windows shell API and C#? My actual problem is that I am dealing with a disconected network drive without a UNC path, so the only way to rename it is from Explorer, but I want to do that programmatically.
feedback
|
|
You should use the Basically, the drive's "name" that you're referring to is called the Volume Label. You could P/Invoke the API and change it that way. To get extended error information, you can use | |||||||
feedback
|
|
System.IO.DriveInfo has a property VolumeLabel that lets you change the label on your volumes. Check the exceptions and remarks on VolumeLabel to see the requirements for renaming a volume. It looks like you can't outright rename the UNC unless you map it as a network drive. You could also create a shortcut to the UNC and rename that as well. | ||||
|
feedback
|