summaryrefslogtreecommitdiff
path: root/shiftos_next/filesystem.vb
diff options
context:
space:
mode:
Diffstat (limited to 'shiftos_next/filesystem.vb')
-rw-r--r--shiftos_next/filesystem.vb19
1 files changed, 19 insertions, 0 deletions
diff --git a/shiftos_next/filesystem.vb b/shiftos_next/filesystem.vb
new file mode 100644
index 0000000..25d2785
--- /dev/null
+++ b/shiftos_next/filesystem.vb
@@ -0,0 +1,19 @@
+Module filesystem
+ 'This module represents the folder structure of the ShiftFS Filesystem.
+
+ Public root As String = "C:\ShiftOS"
+
+ Public home As String = root + "\Home\" 'Inconsistent to fix terminal glitch.
+
+ Public documents As String = home + "Documents\"
+ Public pictures As String = home + "Pictures\"
+ Public music As String = home + "Music\"
+
+ Public systemdir As String = root + "Shiftum42\"
+
+ Public drivers As String = systemdir + "Drivers\"
+
+ Public save As String = drivers + "HDD.dri"
+
+
+End Module