We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b5d226 commit d866451Copy full SHA for d866451
DXMainClient/Online/FileHashCalculator.cs
@@ -151,7 +151,7 @@ public void CalculateHashes()
151
{
152
if (path.Exists)
153
154
- foreach (string filename in path.EnumerateFiles("*", SearchOption.AllDirectories).Select(s => s.Name))
+ foreach (string filename in path.EnumerateFiles("*", SearchOption.AllDirectories).Select(s => s.FullName.Substring(path.FullName.Length)))
155
156
string fileRelativePath = SafePath.CombineFilePath(path.Name, filename);
157
string fileFullPath = SafePath.CombineFilePath(path.FullName, filename);
0 commit comments