无法删除目录,已尝试 rmdir -rf

无法删除目录,已尝试 rmdir -rf

我一直尝试删除服务器中的文件夹,但总是出现相同的错误。请帮助我。我以这篇文章为参考

https://askubuntu.com/questions/217893/how-to-delete-a-non-empty-directory-in-terminal

xxxxxxx@sflogin0$ cd TESTS/
xxxxxxx@sflogin0$ ls
run    test   trail
xxxxxxx@sflogin0$ rmdir -rf test/
rmdir: illegal option -- r
rmdir: illegal option -- f
Usage: rmdir [-ps] dirname ...
xxxxxxx@sflogin0$ ls
run    test   trail
xxxxxxx@sflogin0$ rmdir -pr test/
rmdir: illegal option -- r
Usage: rmdir [-ps] dirname ...
xxxxxxx@sflogin0$ rmdir -ps test/
xxxxxxx@sflogin0$ ls
run    test   trail
xxxxxxx@sflogin0$ rmdir -f test/
rmdir: illegal option -- f
Usage: rmdir [-ps] dirname ...
xxxxxxx@sflogin0$

答案1

我终于搞明白了。我没有尝试从 Mobaxterminal 中删除它,而是使用服务器站点来删除它。效果非常好。

相关内容