Changeset 747
- Timestamp:
- 12/6/2008 8:17:15 AM (4 years ago)
- File:
-
- 1 edited
-
branches/eraser6/Eraser/Program.cs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Eraser/Program.cs
r742 r747 394 394 foreach (KeyValuePair<string, string> kvp in subParams) 395 395 if (kvp.Value == null && target.Drive == null) 396 target.Drive = kvp.Key;396 target.Drive = Path.GetFullPath(kvp.Key); 397 397 else if (kvp.Key == "clusterTips") 398 398 target.EraseClusterTips = true; … … 415 415 foreach (KeyValuePair<string, string> kvp in subParams) 416 416 if (kvp.Value == null && target.Path == null) 417 target.Path = kvp.Key;417 target.Path = Path.GetFullPath(kvp.Key); 418 418 else if (kvp.Key == "excludeMask") 419 419 { … … 442 442 //It's just a file! 443 443 Task.File target = new Task.File(); 444 target.Path = param;444 target.Path = Path.GetFullPath(param); 445 445 targets.Add(target); 446 446 }
Note: See TracChangeset
for help on using the changeset viewer.
