Output logs to AppUser/Roaming/Parasitemia/Logs
[master-thesis.git] / Parasitemia / ParasitemiaUI / Constants.fs
index 8ad5db7..bef3910 100644 (file)
@@ -1 +1,21 @@
 module ParasitemiaUI.Constants
+
+open System
+open System.IO
+
+let USER_DIRECTORY =
+    Path.Combine (
+        Environment.GetFolderPath Environment.SpecialFolder.ApplicationData,
+        "Parasitemia"
+    )
+
+let USER_DIRECTORY_LOG =
+    Path.Combine (
+        USER_DIRECTORY,
+        "Log",
+#if DEBUG
+        "Debug"
+#else
+        ""
+#endif
+    )
\ No newline at end of file