admin
When using the GetFiles() C# method, we often have the problem of the search ending the moment it reaches a locked file or folder. Here we workaround that by writing our own recursive search method which is able to skip locked files and folders.
/// <summary>
/// Process a valid file, add it to the list of filepaths
/// </summary>
/// <param name="path"></param>
private...