Changeset 1878 for branches/eraser6/6.0/Eraser.Manager/FileSystem.cs
- Timestamp:
- 3/1/2010 10:35:37 PM (3 years ago)
- File:
-
- 1 edited
-
branches/eraser6/6.0/Eraser.Manager/FileSystem.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/6.0/Eraser.Manager/FileSystem.cs
r1860 r1878 45 45 { 46 46 //Initialise the base name, if any. 47 Prng prng = PrngManager.GetInstance(ManagerLibrary.Settings.ActivePrng); 47 48 string resultPrefix = info == null ? string.Empty : info.FullName + 48 49 Path.DirectorySeparatorChar; … … 72 73 while (info != null && 73 74 prohibitedFileNames.IndexOf(Path.GetFileNameWithoutExtension(result)) != -1 || 74 (Directory.Exists(resultPrefix + result) || File.Exists(resultPrefix + result))); 75 (Directory.Exists(resultPrefix + result) || 76 System.IO.File.Exists(resultPrefix + result)) 77 ); 75 78 return resultPrefix + result; 76 79 }
Note: See TracChangeset
for help on using the changeset viewer.
