How to solve “The directory is not empty” error when running rmdir command in a batch script?

前端 未结 13 2291
悲&欢浪女
悲&欢浪女 2021-01-30 02:16

I am making a batch script and part of the script is trying to remove a directory and all of its sub-directories. I am getting an intermittent error about a sub-directory not be

13条回答
  •  故里飘歌
    2021-01-30 02:28

    Im my case i just moved the folder to root directory like so.

    move  c:\
    

    And then ran the command to remove the directory

    rmdir c:\ /s /q
    

提交回复
热议问题