+ 1
application console in ++
HI I need simple source in C++ show disk usage using du command du -s du -h du -rh how can execute them in one command and save to file thanks
1 ответ
+ 1
Use the system() function
E.g
system("du -s");
HI I need simple source in C++ show disk usage using du command du -s du -h du -rh how can execute them in one command and save to file thanks