Post Download Import Job created and in effect. Scans every minute to import files from the users configured "SabDropDirectory".

This commit is contained in:
Mark McDowall 2011-06-07 14:19:11 -07:00
commit 5041ff550c
5 changed files with 44 additions and 27 deletions

View file

@ -51,5 +51,10 @@ namespace NzbDrone.Core.Providers.Core
{
return Path.GetExtension(path);
}
public virtual void DeleteFolder(string path, bool recursive)
{
Directory.Delete(path, recursive);
}
}
}