[SimpleSort] Retieval step can look like program hang

This commit is contained in:
Matt Nadareski
2016-10-17 13:54:03 -07:00
parent 62803fbd70
commit 7eada54218

View File

@@ -201,6 +201,9 @@ namespace SabreTools.Helper
{ {
bool success = true; bool success = true;
_logger.User("Retrieving list all files from input");
DateTime start = DateTime.Now;
// Create a list of just files from inputs // Create a list of just files from inputs
List<string> files = new List<string>(); List<string> files = new List<string>();
foreach (string input in _inputs) foreach (string input in _inputs)
@@ -224,6 +227,7 @@ namespace SabreTools.Helper
_logger.Error("'" + input + "' is not a file or directory!"); _logger.Error("'" + input + "' is not a file or directory!");
} }
} }
_logger.User("Retrieving complete in: " + DateTime.Now.Subtract(start).ToString(@"hh\:mm\:ss\.fffff"));
// Then, loop through and check each of the inputs // Then, loop through and check each of the inputs
_logger.User("Processing files:\n"); _logger.User("Processing files:\n");