Hi all,
I am looking for standard libraries in C++ that would allow me to do things like:
- Traverse a directory recursively
- search for files within a directory
- Check if file exists, folder exists or not and create it if not present.
- Check a folder hierarchy exists or create it if not found. Equivalent of mkdir -p
- Uncompressing / Compressing a file
- Checking the CRC / Hash of the file
- copy file, delete file, delete folder, copy folder recursively
- running a system command and reading its console output within the program.
It seems that scripting languages and Java have good support for these kind of problems. But, I am not able to find out there are standard ways of doing this in C++.
Thanks!
Ajay