ditch remaining backslashes in paths

This commit is contained in:
Tom Yan
2020-07-10 11:16:20 +08:00
parent 7fee36c600
commit 72db4d0814
2 changed files with 12 additions and 24 deletions

View File

@@ -53,8 +53,8 @@ namespace QobuzDownloaderX
public string userAuthToken { get; set; }
public string altLoginValue { get; set; }
string errorLog = Path.GetDirectoryName(Application.ExecutablePath) + "\\Latest_Error.log";
string dllCheck = Path.GetDirectoryName(Application.ExecutablePath) + "\\taglib-sharp.dll";
string errorLog = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "Latest_Error.log");
string dllCheck = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "taglib-sharp.dll");
static string GetMd5Hash(MD5 md5Hash, string input)
{