문제

I created a C++ hello world project in linux and I could successfully build the project and I now noticed that after cleaning the project , the .o files are removed but the folder Debug/Release and also the sub-directories folder is not deleted. However in windows the folders also get deleted.
I then found out that in linux the command rm -rf is used and in windows del /F /S /Q is used.
But -r does mean recursively and -f meaning forcefully? So why isn't the folder deleted? For it to be deleted what should have been the clean command in linux??

도움이 되었습니까?

해결책

This seems to be the desired behaviour as pointed out in the comments!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top