Changeset 955
- Timestamp:
- 5/1/2009 5:00:19 AM (4 years ago)
- Location:
- branches/eraser6
- Files:
-
- 2 edited
-
Manager/Task.cs (modified) (2 diffs)
-
Util/File.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Manager/Task.cs
r944 r955 331 331 /// <param name="list">The list to add the ADS paths to.</param> 332 332 /// <param name="file">The file to look for ADSes</param> 333 protected void GetPathADSes( List<string> list, out long totalSize, string file)333 protected void GetPathADSes(ICollection<string> list, out long totalSize, string file) 334 334 { 335 335 totalSize = 0; … … 338 338 { 339 339 //Get the ADS names 340 List<string> adses = Util.File.GetADSes(new FileInfo(file));340 ICollection<string> adses = Util.File.GetADSes(new FileInfo(file)); 341 341 342 342 //Then prepend the path. -
branches/eraser6/Util/File.cs
r914 r955 42 42 /// <returns>A list containing the names of the ADSes of each file. The 43 43 /// list will be empty if no ADSes exist.</returns> 44 public static List<string> GetADSes(FileInfo info)44 public static ICollection<string> GetADSes(FileInfo info) 45 45 { 46 46 List<string> result = new List<string>();
Note: See TracChangeset
for help on using the changeset viewer.
