blob: 25d27858753fe10964bca1f0cb043daf2f3d1270 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|