mirror of
https://github.com/TheUltimateHacker/shiftos-next.git
synced 2025-02-02 12:37:33 +00:00
ac564b6e77
Added cd, ls/dir, and mkdir commands to the Terminal.
19 lines
543 B
VB.net
19 lines
543 B
VB.net
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
|