- Location of code file is current working directory and
home
for file explorer. - Program can be exited using
Cntl+x
.
- Default mode of file explorer, allowing user to navigate through file system using keyboard shortcuts.
- Displays directory content similar to
ls
command output in Unix based systems.
- Up: Up arrow key
- Down: Down arrow key
- Scroll Up:
k
- Scroll Down:
l
- Open Directory/File:
Enter
- Previously visited directory: Left arrow key
- Next directory: Right arrow key
- Go up one level: Backspace
- Home:
h
- Allows user to enter different commands at the bottom of the screen.
- Copy:
copy <source_file(s)/directory(ies)> <destination_directory>
- Move:
move <source_file(s)/directory(ies)> <destination_directory>
- Rename:
rename <old_filename> <new_filename>
- Create File:
create_file <file_name> <destination_path>
Destination path should be relative to home. - Create Directory:
create_dir <dir_name> <destination_path>
Destination path should be relative to home. - Delete File:
delete_file <file_path>
Destination path should be relative to home. - Delete Directory:
delete_dir <dir_path>
Destination path should be relative to home. - Goto:
goto <location>
Location is absolute path w.r.t. home. - Search:
search <file_name>
orsearch <directory_name>
- Exit command mode:
Esc
key