Changeset 35629
- Timestamp:
- 10/18/09 16:59:42 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/csharp/PhotoCollector/PhotoCollector/FileCopyInfo.cs
r22500 r35629 13 13 public string DestFilePath { set; private get; } 14 14 15 public FileCopyInfo( string srcFilePath, string destDirPath)15 public FileCopyInfo(FileInfo srcFile, string destDirPath) 16 16 { 17 this.srcFile = new FileInfo(srcFilePath);17 this.srcFile = srcFile; 18 18 DestFilePath = Path.Combine(destDirPath, srcFile.Name); 19 19 } … … 68 68 where f.CreationTime > showStartTime 69 69 orderby f.CreationTime descending 70 select new FileCopyInfo(f .FullName, destDirPath);70 select new FileCopyInfo(f, destDirPath); 71 71 array = query.ToArray(); 72 72 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)