diff options
| author | TheUltimateHacker <[email protected]> | 2015-05-17 11:47:42 -0400 |
|---|---|---|
| committer | TheUltimateHacker <[email protected]> | 2015-05-17 11:47:42 -0400 |
| commit | ac564b6e77ed2da993ccd60851709cda39d4ac9f (patch) | |
| tree | d1633728313e73e81d0d50f8370e9de5728ec447 /shiftos_next/filesystem.vb | |
| parent | 26e89066d4a9e831a0c66f0ccddcf731ecbb49f0 (diff) | |
| download | shiftos-next-ac564b6e77ed2da993ccd60851709cda39d4ac9f.tar.gz shiftos-next-ac564b6e77ed2da993ccd60851709cda39d4ac9f.tar.bz2 shiftos-next-ac564b6e77ed2da993ccd60851709cda39d4ac9f.zip | |
Added directory-surfing to Terminal.
Added cd, ls/dir, and mkdir commands to the Terminal.
Diffstat (limited to 'shiftos_next/filesystem.vb')
| -rw-r--r-- | shiftos_next/filesystem.vb | 19 |
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 |
