2015-05-17 15:47:42 +00:00
|
|
|
|
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\"
|
|
|
|
|
|
2015-05-17 17:05:42 +00:00
|
|
|
|
Public systemdir As String = root + "\Shiftum42\"
|
2015-05-17 15:47:42 +00:00
|
|
|
|
|
|
|
|
|
Public drivers As String = systemdir + "Drivers\"
|
2015-05-29 13:57:53 +00:00
|
|
|
|
Public skindir As String = systemdir + "Skins\"
|
|
|
|
|
|
|
|
|
|
Public bwmskin As String = skindir + "BWM\"
|
2015-05-17 15:47:42 +00:00
|
|
|
|
|
|
|
|
|
Public save As String = drivers + "HDD.dri"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
End Module
|