From 852bf05719128388e0a18b107f689929f52386bf Mon Sep 17 00:00:00 2001 From: Clyde Broderick Date: Thu, 31 Mar 2022 16:25:52 -0400 Subject: [PATCH 1/2] Added available command descriptions. --- .idea/compiler.xml | 1 + FileManager.md | 21 ++++++++++++++++++++- 2 files changed, 21 insertions(+), 1 deletion(-) 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..358b1fd 100644 --- a/FileManager.md +++ b/FileManager.md @@ -1,4 +1,23 @@ # FileManager -An amazingly useless tool! +An amazing tool that can prove itself to be quite useful! +#Available commands are: + +### list, info, mkdir, rename, copy, move, delete, and quit! + +###list is a function that is used to display all contents of a specified directory. + +###info is a function that helps to display the properties of a file or directory. + +### mkdir is a function used to create a new empty directory whose name is define by path. I like to think of mkdir as create a new folder. + +### rename is a function used to change the designated name of a file or folder. + +### copy is a function used to make a duplicate of a file or folder to the printer or to the terminal. + +###move is a function used to change where a file or directory is located. For example, moving a file from documents to desktop. + +###delete is a function that helps you to remove an unwanted file or directory. + +###quit exits the command line processor interactive input mode and returns to the operating system command prompt. \ No newline at end of file From df4081d6d7b4a413cc5059da5e56dd3a841b4408 Mon Sep 17 00:00:00 2001 From: Clyde Broderick Date: Thu, 31 Mar 2022 16:41:02 -0400 Subject: [PATCH 2/2] Added all information for the file manager. --- FileManager.md | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/FileManager.md b/FileManager.md index 358b1fd..840118f 100644 --- a/FileManager.md +++ b/FileManager.md @@ -6,18 +6,32 @@ An amazing tool that can prove itself to be quite useful! ### list, info, mkdir, rename, copy, move, delete, and quit! -###list is a function that is used to display all contents of a specified directory. -###info is a function that helps to display the properties of a file or directory. -### mkdir is a function used to create a new empty directory whose name is define by path. I like to think of mkdir as create a new folder. +##list +####is a function that is used to display all contents of a specified directory. -### rename is a function used to change the designated name of a file or folder. +##info +####is a function that helps to display the properties of a file or directory. -### copy is a function used to make a duplicate of a file or folder to the printer or to the terminal. +##mkdir +####is a function used to create a new empty directory whose name is define by path. I like to think of mkdir as create a new folder. -###move is a function used to change where a file or directory is located. For example, moving a file from documents to desktop. +##rename +####is a function used to change the designated name of a file or folder. -###delete is a function that helps you to remove an unwanted file or directory. +## copy +####is a function used to make a duplicate of a file or folder to the printer or to the terminal. -###quit exits the command line processor interactive input mode and returns to the operating system command prompt. \ No newline at end of file +##move +####is a function used to change where a file or directory is located. For example, moving a file from documents to desktop. + +- +ProTip: Copy and Move are in the same category because copying performs the same task as moving but also leaves the file selected in the original destination. + +- +##delete +####is a function that helps you to remove an unwanted file or directory. + +##quit +####exits the command line processor interactive input mode and returns to the operating system command prompt. \ No newline at end of file