How do you delete everything inside a specified folder instead of having to delete each file individialy...?
Thanks
-Chris
This is a discussion on Deleting within the C++ Programming forums, part of the General Programming Boards category; How do you delete everything inside a specified folder instead of having to delete each file individialy...? Thanks -Chris...
How do you delete everything inside a specified folder instead of having to delete each file individialy...?
Thanks
-Chris
Please direct all complaints regarding this post to the nearest brick wallHave a nice day.
system("rm -rf folderName");
if system calls work in Win32 environments,
system("deltree folderName");