We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cd39a7 commit bb31869Copy full SHA for bb31869
Realm/Realm/Realm.cs
@@ -168,6 +168,11 @@ public static void DeleteRealm(RealmConfigurationBase configuration)
168
File.Delete(fullpath + ".log");
169
File.Delete(fullpath + ".lock");
170
File.Delete(fullpath + ".note");
171
+
172
+ if (Directory.Exists($"{fullpath}.management"))
173
+ {
174
+ Directory.Delete($"{fullpath}.management", recursive: true);
175
+ }
176
}
177
178
private static bool IsRealmOpen(string path)
0 commit comments