Fixed GetInProgress API - The condition for PagesRead needed to be a sum for all progress, not each row.
This commit is contained in:
parent
b8cd04e1de
commit
a125b2ac0b
7 changed files with 69 additions and 12 deletions
|
@ -13,5 +13,7 @@ namespace API.Interfaces.Services
|
|||
/// <param name="logFileName"></param>
|
||||
/// <returns></returns>
|
||||
IEnumerable<string> LogFiles(int maxRollingFiles, string logFileName);
|
||||
|
||||
void CleanupBackups();
|
||||
}
|
||||
}
|
|
@ -42,6 +42,7 @@ namespace API.Interfaces.Services
|
|||
void ClearDirectory(string directoryPath);
|
||||
|
||||
bool CopyFilesToDirectory(IEnumerable<string> filePaths, string directoryPath);
|
||||
bool Exists(string directory);
|
||||
|
||||
IEnumerable<string> GetFiles(string path, string searchPatternExpression = "",
|
||||
SearchOption searchOption = SearchOption.TopDirectoryOnly);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue