Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不小心创建了一个名为:backups\r\r. 任何删除它的尝试都失败了!
backups\r\r
这个目录怎么删除?
使用ANSI-C 引用:rmdir $'backups\r\r'
rmdir $'backups\r\r'
或使用模式匹配交互删除:rmdir -i backups??
rmdir -i backups??
您必须转义反斜杠:
rmdir backups\\r\\r/