From 39dd6fc5c2acaf5378905a70dace70b9e0df4c96 Mon Sep 17 00:00:00 2001 From: kylehwelch Date: Mon, 1 Aug 2022 09:46:35 -0400 Subject: [PATCH] file operator instructions finished --- .DS_Store | Bin 0 -> 6148 bytes .idea/compiler.xml | 1 + .idea/dbnavigator.xml | 462 ++++++++++++++++++++++++++++++++++++++++++ FileManager.md | 55 +++++ 4 files changed, 518 insertions(+) create mode 100644 .DS_Store create mode 100644 .idea/dbnavigator.xml diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..044a456bc95afea3135a6c1c04ae735e26cf7852 GIT binary patch literal 6148 zcmeHKJ5Iwu5S>ko6hz|^B!t``sF2cAn8=(U1s%#)Nkk$?#Pq%br=aEzoB?r+l$5;L z9XY$Pp+pGHNV9J}A3yE0<@FMg={-%lL@^O{;Eb(93=PJ4_L{XM!p(;7v7B}L<9xNQ zRchd`D!|V!qAQxwf{O6@z25t|Ri0&|Wj;czbMaZ6O|Rc>!u;gN{Ce)a8)l1EIsos2 zCN!mC$Q(b1S)cpm{rq9>xV`>WzGH8$2>5Bh{B7FMBaK7u%i%8L^PYZGYnDErvz`t4 zQs#@Oz*;x^I@5`t^EvOf6=&7!vo_@$c$r&G6;K6K0bc>^*=(I7hdQbPs(>m`DZt-{ z1kRWWmJaQw1A{#R03(F0Va~sl+>;2Vf~7-bV8*oqU8|8JhH>qPCsLORmJVGz8996y zVK#C?F_sopZ~)qy;22Kfq$idiL!py!;)lgtu2oC t+5|p;vvFPNuxi1?ZpEnOt@s#j4e^90z*MkwhzLx71gs1?r~<#Lz!%+pcT@lX literal 0 HcmV?d00001 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/.idea/dbnavigator.xml b/.idea/dbnavigator.xml new file mode 100644 index 0000000..7b1bc5f --- /dev/null +++ b/.idea/dbnavigator.xml @@ -0,0 +1,462 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/FileManager.md b/FileManager.md index 1e01e92..4e77f00 100644 --- a/FileManager.md +++ b/FileManager.md @@ -2,3 +2,58 @@ An amazingly useless tool! +All operations can be foundin FileOperator.java-- + +list - +The list command will show you a list of the files in a directory. When you call the command list, you will have to +enter the directory path as a string parameter. +usage will look like this: list +"~/user/projects" + + +info - +The info command will print the information of a file. When you call the info command, you will have to enter the path +to the file as a string parameter. It will print the Name, Absolute path, Relative path, file size, creation date, and +the last time it was modified. +usage will look like this: +info +"~/user/projects/casino.java" + + + +mkdir - +The createDir command will create a directory at the path which must be entered as a string parameter. There are +limitations to which characters can be used in the directory name: \\ / : ? * \ < > | +usage will look like this: +mkdir +"~/user/projects/casino" + + +rename - +The rename command will rename an existing file. A file cannot be renamed to a name that is already being used in that +directory. You have to enter the OLD name of the file, and then the NEW name of the file as string parameters. +Usage will look like this: +rename +"oldfile", "newfile" + + +copy / move - +Either command will have the same functions, this will either copy a file to a different directory, or move it without +copying. +Usage will look like this: +copy (or) move +"~/user/projects/casino.java" +"~/user/projects/newCasino/" + + +delete files +The delete command will delete a file or directory +Usage will look like this: +delete +"~/user/projects/casino.java" (OR) "~/user/projects/newCasino/" + + + +quit - +Quits the program. +Usage will look like this: quit(); \ No newline at end of file