Merge pull request #30 from thejinx0r/develop

Implement https://trello.com/c/a1il1sTd
This commit is contained in:
Mark McDowall 2013-09-28 15:18:25 -07:00
commit 82d4933152
2 changed files with 9 additions and 0 deletions

View File

@ -39,6 +39,7 @@ namespace NzbDrone.Common
string GetPathRoot(string path);
void SetPermissions(string filename, WellKnownSidType accountSid, FileSystemRights rights, AccessControlType controlType);
bool IsParent(string parentPath, string childPath);
void SetFolderAccessTime(string path, DateTime time){
FileAttributes GetFileAttributes(string path);
void EmptyFolder(string path);
}
@ -451,6 +452,10 @@ namespace NzbDrone.Common
}
}
private void SetFolderAccessTime(string path, DateTime time){
Directory.SetLastWriteTimeUtc(path,time);
}
public FileAttributes GetFileAttributes(string path)
{
return File.GetAttributes(path);

View File

@ -43,6 +43,8 @@ namespace NzbDrone.Core.MediaFiles
var newFileName = _buildFileNames.BuildFilename(episodes, series, episodeFile);
var filePath = _buildFileNames.BuildFilePath(series, episodes.First().SeasonNumber, newFileName, Path.GetExtension(episodeFile.Path));
MoveFile(episodeFile, filePath);
_diskProvider.SetFolderAccessTime( Path.GetDirectoryName(filePath), episodeFile.DateAdded);
_diskProvider.SetFolderAccessTime( series.Path, episodeFile.DateAdded);
return filePath;
}
@ -52,6 +54,8 @@ namespace NzbDrone.Core.MediaFiles
var newFileName = _buildFileNames.BuildFilename(localEpisode.Episodes, localEpisode.Series, episodeFile);
var filePath = _buildFileNames.BuildFilePath(localEpisode.Series, localEpisode.SeasonNumber, newFileName, Path.GetExtension(episodeFile.Path));
MoveFile(episodeFile, filePath);
_diskProvider.SetFolderAccessTime( Path.GetDirectoryName(filePath), episodeFile.DateAdded);
_diskProvider.SetFolderAccessTime( localEpisode.Series.Path, episodeFile.DateAdded);
return filePath;
}