Some files did not get renamed on my Windows System especially files starting with 0 in the name.
After some looking around in the code (DownloadHelper.cs) I found out that the strings are constructed like this:
string fullPathWithTheServerFileName = $“{folder}{path}/{serverFilename}{extension}”;
The path will then be converted to windows \0 wich is a null terminator in my case.
This in turn causes the File.Exists call to fail.
My C# coding skills are unfortunately too bad, otherwise I would have fixed this myself
Edit:
First i though this is a \0 problems, but after looking at the source code i found that the logic for renaming drm videos is missing
Some files did not get renamed on my Windows System especially files starting with 0 in the name. After some looking around in the code (DownloadHelper.cs) I found out that the strings are constructed like this: string fullPathWithTheServerFileName = $“{folder}{path}/{serverFilename}{extension}”; The path will then be converted to windows \0 wich is a null terminator in my case. This in turn causes the File.Exists call to fail. My C# coding skills are unfortunately too bad, otherwise I would have fixed this myself
Edit: First i though this is a \0 problems, but after looking at the source code i found that the logic for renaming drm videos is missing