A simple file management system in C language.
- Copy
- Rename
- changeExt (Change File Extension)
- fileSize (Find filesize of a particular file)
- displayContent (of a file)
- isFile (Check if given path is a file)
- isDir (Check if given path is a dir)
- listFiles (List all files in a dir)
- listHiddenFiles (List hidden files in a dir)
- filterFiles (Filter files by a keyword)
- largestFile (Find the largest File)
- removeFile (Delete a File)
- makeDir
- changeDir
- listDir
- Clone or Download the project.
- Move to the project directory.
- Execute in terminal - ./project (any of the above mentioned functions) For example :- ./project changeExt
- It will print the usage of the function. Follow the usage to execute the command. For example :- ./project changeExt /path/to/file file_name new_extension
- Enjoy.