Delete folder and all files/subdirectories

后端 未结 5 2074
梦谈多话
梦谈多话 2020-12-10 01:19

How can I delete a folder with all it\'s files/subdirectories (recursive deletion) in C++?

5条回答
  •  悲哀的现实
    2020-12-10 01:55

    Standard C++ provides no means of doing this - you will have to use operating system specific code or a cross-platform library such as Boost.

提交回复
热议问题