Delete files or folder recursively on Windows CMD

后端 未结 12 1369
悲哀的现实
悲哀的现实 2020-12-02 08:30

How do I delete files or folders recursively on Windows from the command line?

I have found this solution where path we drive on the command line and run this comman

12条回答
  •  温柔的废话
    2020-12-02 08:36

    Please execute the following steps:

    1. Open the command prompt
    2. Change directory to the required path
    3. Give the following command

      del /S *.svn
      

提交回复
热议问题