标签: ioexception
我正在尝试更改映射的网络驱动器上的volumelabel,但是当尝试为磁盘设置Volumelabel时,出现IOException和消息:请求未得到支持。
我要在Main中首先运行的代码:
DriveInfo drive = DriveInfo.GetDrives().Where(x => x.Name[0] == 'D').FirstOrDefault(); drive.VolumeLabel = "Test";
有人知道如何克服吗?