Linux 刪除目錄下的檔案的常用方法

2021-08-21 16:22:52 字數 1030 閱讀 7638

使用rm -rf 目錄名字 命令即可

-r 就是向下遞迴,不管有多少級目錄,一併刪除

-f 就是直接強行刪除,不作任何提示的意思

注意:-f 一定要慎重

1、最經典的方法,刪除當前目錄下的所有型別的檔案

rm -f *
2、用find命令查詢普通檔案並刪除or用find命令的處理動作將其刪除

find .

-type f -delete 或者 find .

-type f -exec rm -f {} \;

3、刪除全部普通檔案

rm-f `find . -type

f`

1\、最經典的方法,刪除指定目錄下的所有型別的檔案

rm -f 指定目錄*
2.、用find命令查詢指定目錄下的所有普通檔案並刪除or用find命令的處理動作將其刪除

find 指定目錄 -type f -delete或find 指定目錄 -type f -exec rm -f {} \;
4、刪除指定目錄下的全部普通檔案

rm-f `find 指定目錄 -type

f`

也就是說,大多情況下:

方法一: rm file # 直接刪除

方法二: rm -i file # 刪前提示

方法三: rm -f file # 強制刪除

方法四: rm -rf /dir # 遞迴刪除

方法五 使用find命令結合-exec命令來刪除

find /tmp -type f -exec rm -rf {} \`;
方法六: 使用find命令結合xargs命令來刪除

find /tmp -type

f | xargs

rm -rf

Linux刪除目錄下的檔案的方法

方法一 刪除當前目錄下的所有型別的檔案,命令語句如下 rm f 刪除指定目錄下的所有型別的檔案,例如 刪除 home wwwroot 目錄下的所有檔案,命令語句如下 rm f home wwwroot 方法二 用find命令在當前目錄下查詢普通檔案並刪除,命令語句如下 find type f del...

刪除目錄下檔案

刪除當前目錄下的檔案 1.rm f 最經典的方法,刪除當前目錄下的所有型別的檔案 2.find type f delete或find type f exec rm f 用find命令查詢普通檔案並刪除or用find命令的處理動作將其刪除 3.find type f xargs rm f 用於引數列表...

刪除目錄(資料夾)以及目錄下的檔案

刪除目錄 資料夾 以及目錄下的檔案 param spath 被刪除目錄的檔案路徑 return 目錄刪除成功返回true,否則返回false public static boolean deletedirectory string spath file dirfile new file spath ...