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 2f52c1a commit 21a6fddCopy full SHA for 21a6fdd
Flow.Launcher.Infrastructure/UserSettings/DataLocation.cs
@@ -21,7 +21,8 @@ public static string DataDirectory()
21
22
public static bool PortableDataLocationInUse()
23
{
24
- if (Directory.Exists(PortableDataPath) && !File.Exists(DeletionIndicatorFile))
+ if (Directory.Exists(PortableDataPath) &&
25
+ !File.Exists(Path.Combine(PortableDataPath, DeletionIndicatorFile))
26
return true;
27
28
return false;
0 commit comments