From 5f41a74b4b2a6d6acc7b8ea2fe52d82a11ab08d5 Mon Sep 17 00:00:00 2001 From: Abiel Figueroa Date: Sat, 27 Feb 2021 00:02:14 -0500 Subject: [PATCH] Added text to FileManager.md to explain what the main program does. --- .idea/JavaFileManager.iml | 2 ++ .idea/compiler.xml | 1 + FileManager.md | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 .idea/JavaFileManager.iml diff --git a/.idea/JavaFileManager.iml b/.idea/JavaFileManager.iml new file mode 100644 index 0000000..78b2cc5 --- /dev/null +++ b/.idea/JavaFileManager.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 3f507c9..29fac82 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -7,6 +7,7 @@ + diff --git a/FileManager.md b/FileManager.md index 1e01e92..cbbf05e 100644 --- a/FileManager.md +++ b/FileManager.md @@ -2,3 +2,38 @@ An amazingly useless tool! +This is the **ACTUAL** worst. It's just really basic terminal but without a current directory. + +

list

+ +prompts you to type in the *absolute* path of the directory you want listed. There is no command to check current location or explore the directories, so your only recourse is memorizing the directories. I couldn't even start using it without leaving and checking a window to remember the topmost root is called 'Users'. Even when this command does work, it shows all files including hidden stuff. So finding what you need can be incredibly difficult. Not a good start. + +

info

+Better. Still needs an absolute path, but the result tells you various information about the folder in an orderly fashion. What's interesting it is states both the absolute AND relative paths for the directory, implying potential functionality to change the working directory. Neat. + + +

help

+Gold star, basically tells me what the README file says. Could be better formatted, and give me more info per command. Still probably the most useful command. + +

mkdir

+Seems to work just fine, surprisingly. Nees absolute path of new directory, but perfectly functional. + +

Copy

+Doesn't seem to work. Prompts me for the path of the file or folder I want to 'move or copy' without ever asking me to clarify which I want. + +

move

+Just deletes the target file. Same prompt as the copy file without giving the user a chance to choose one or the other. + +

rename

+ALSO seems to just delete the target directory. + +

delete

+It works. Deletes end of entered absolute path. Unsurprising. + +

quit

+Works as expected, quits file manager. Throws the following text before exiting: + + You're exiting File Manager. + Process finished with exit code 0 + +Uncertain why a user would need to know that. \ No newline at end of file