mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
fixed http 500 error.
This commit is contained in:
parent
54881a0e4a
commit
a68c882032
2 changed files with 12 additions and 0 deletions
|
@ -24,6 +24,16 @@ namespace NzbDrone.Common
|
|||
|
||||
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||||
|
||||
public virtual DateTime GetLastDirectoryWrite(string path)
|
||||
{
|
||||
if (!FolderExists(path))
|
||||
{
|
||||
throw new DirectoryNotFoundException("Directory doesn't exist. " + path);
|
||||
}
|
||||
|
||||
GetFiles(path, SearchOption.AllDirectories);
|
||||
}
|
||||
|
||||
public virtual bool FolderExists(string path)
|
||||
{
|
||||
return Directory.Exists(path);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue