aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/Paths.vb
diff options
context:
space:
mode:
authorTheUltimateHacker <[email protected]>2015-03-16 09:19:34 -0400
committerTheUltimateHacker <[email protected]>2015-03-16 09:19:34 -0400
commit93d62dcac2c8ceb10d2f839614ca83c12c5902ee (patch)
tree3818e6a48f43c97d0dcd4a52a05b50ee3a33bea0 /ShiftOS/Paths.vb
parent6278dd2510d692446e2baf0b079850e3e0250f2e (diff)
parentdda2964b748eafb3ff1105966f8a349069834cc0 (diff)
downloadshiftos-93d62dcac2c8ceb10d2f839614ca83c12c5902ee.tar.gz
shiftos-93d62dcac2c8ceb10d2f839614ca83c12c5902ee.tar.bz2
shiftos-93d62dcac2c8ceb10d2f839614ca83c12c5902ee.zip
Merge remote-tracking branch 'origin/master'
Conflicts: ShiftOS/skins.vb
Diffstat (limited to 'ShiftOS/Paths.vb')
-rw-r--r--ShiftOS/Paths.vb44
1 files changed, 44 insertions, 0 deletions
diff --git a/ShiftOS/Paths.vb b/ShiftOS/Paths.vb
new file mode 100644
index 0000000..57bb689
--- /dev/null
+++ b/ShiftOS/Paths.vb
@@ -0,0 +1,44 @@
+Module Paths
+
+
+
+ ' Paths:
+ ' Root path - Paths.root - DO NOT USE UNLESS NECISARY (Opening files from the file skimmer, blocking the user from going above C:\ShiftOS, ect)
+ ' Software Data - Paths.progdata - This is the base path for all program data. If you are adding a folder to this path, add a variable in here
+ ' AdvStart - Paths.advdata - I'm not fully sure what this does
+ ' Knowledge Input Data - Paths.kidata - Knowledge Input uses this to save your lists of words you've found
+ ' Shiftnet Data - Paths.shiftnetdata - This is where the shiftnet currently saves it's history
+ ' Download Manager Data - Paths.dnldata - Not sure what this does
+ ' Save Data - Paths.savedata - The game has it's save file in here
+ ' Home Directory - Paths.home - This is the folder that contains all the user's files
+ ' Desktop - Paths.desktop - All the files that appear on your desktop should be stored here
+ ' Documents - Paths.documents - The documents folder is where the user puts their documents
+ ' Downloads - Paths.downloads - The downloads folder is where the downloader downloads downloads from the Shiftnet
+ ' Music - Paths.music - The music folder is where the user puts their music
+ ' Pictures - Paths.pictures - The pictures folder is where the user puts their pictures
+ ' Skins - Paths.skins - The skins folder is where the user puts their skins
+
+
+
+
+
+ Public root As String = "C:\ShiftOS\" 'Do NOT use this unless it is for files that must go DIRECTLY in C:\ShiftOS\
+
+ Public progdata As String = root & "SoftwareData\"
+
+ Public advdata As String = progdata & "AdvStart\"
+ Public kidata As String = progdata & "KnowledgeInput\"
+ Public shiftnetdata As String = progdata & "Shiftnet\"
+ Public dnldata As String = progdata & "DownloadManager\"
+
+ Public savedata As String = root & "Shiftum42\"
+
+ Public home As String = root & "Home\"
+
+ Public desktop As String = home & "Desktop\"
+ Public documents As String = home & "Documents\"
+ Public downloads As String = home & "Documents\"
+ Public music As String = home & "Music\"
+ Public pictures As String = home & "Pictures\"
+ Public skins As String = home & "Skins\"
+End Module