From ac564b6e77ed2da993ccd60851709cda39d4ac9f Mon Sep 17 00:00:00 2001 From: TheUltimateHacker Date: Sun, 17 May 2015 11:47:42 -0400 Subject: Added directory-surfing to Terminal. Added cd, ls/dir, and mkdir commands to the Terminal. --- shiftos_next/filesystem.vb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 shiftos_next/filesystem.vb (limited to 'shiftos_next/filesystem.vb') 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 -- cgit v1.2.3