Index: trunk/eraser/Eraser.Util/VolumeInfo.cs
===================================================================
--- trunk/eraser/Eraser.Util/VolumeInfo.cs	(revision 2140)
+++ trunk/eraser/Eraser.Util/VolumeInfo.cs	(revision 2147)
@@ -330,5 +330,10 @@
 				if (driveType == DriveType.Network)
 				{
-					//Resolve the mountpoint to a UNC path
+					//If the current directory is a UNC path, then return the VolumeInfo instance
+					//directly
+					if (currentDir.Substring(0, 2) == "\\\\" && currentDir.IndexOf('\\', 2) != -1)
+						return new VolumeInfo(currentDir);
+
+					//Otherwise, resolve the mountpoint to a UNC path
 					uint bufferCapacity = (uint)volumeID.Capacity;
 					uint errorCode = NativeMethods.WNetGetConnection(
