Crate rfm[−][src]
Expand description
rfm
rfm is a convenient and intuitive way to interact with files on OS.
Function naming is similar to Unix commands
(ls, mkdir, mv, rm, cp, touch etc.),
so you can easily figure out how to use it.
Functions
| clean | Clears the directory/directories of all child files and directories on the
passed path.
|
| cp | Copies files and directories, including nested files and directories.
|
| extract | Extracts all files from the directory, including nested files.
|
| ls | Read the directory/directories and return the content.
|
| mkdir | Creates a directory/directories on the passed path. Note, the function
creates all missing directories if they occur in the passed parameter.
|
| mv | Moves files and directories, including nested files and directories.
|
| rm | Deletes files/directories (including nested files/directories).
|
| touch | Creates a file/files in the passed path.
|