In case we have the following directory:
C: \ xxxproject \ include \
And the directory sub neath may contains lots of files, sub directories, and so on.
We want to remove this 'include 'path and re-construct it post the XXX project has been built, and if we simply use the command:
Rd include/Q/s
To delete the directory, because Delete Files action and delete directory action are go paralleled, sometime may cause the system fail. for safety, we shoshould always take this action into two steps: first remove the files, and then remove the directories,
Such:
: No matter the directory want to be removed is read only or not, force clean all the filesdel include /*. */S/f/Q: And then remove the directoriesrd include/S/Q
This will guarantee the action won't fail, and we can recreate the 'include 'directory without system warnings:
MD include