Changeset 1698
- Timestamp:
- 1/27/2010 3:12:00 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/eraser6/Eraser.Manager/Task.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser6/Eraser.Manager/Task.cs
r1675 r1698 502 502 public override string UIText 503 503 { 504 get { return System.IO.Path.GetFileName(Path); } 504 get 505 { 506 string fileName = System.IO.Path.GetFileName(Path); 507 string directoryName = System.IO.Path.GetDirectoryName(Path); 508 return string.IsNullOrEmpty(fileName) ? 509 (string.IsNullOrEmpty(directoryName) ? Path : directoryName) 510 : fileName; 511 } 505 512 } 506 513
Note: See TracChangeset
for help on using the changeset viewer.
