Linux 下刪除大量文件效率進行對比

首先建立50萬個文件

$ test   for i in $(seq 1 500000);do echo text >>$i.txt;done

1、rm 刪除

$ time rm -f *
zsh: sure you want to delete all the files in /home/hungerr/test [yn]? y
zsh: argument list too long: rm
rm -f *  3.63s user 0.29s system 98% cpu 3.985 total
# 由於文件數量過多,rm不起作用。

2、find 刪除

 $ time find ./ -type f -exec rm {} \;
 find ./ -type f -exec rm {} \;  49.86s user 1032.13s system 41% cpu 43:19.17 total#
 # 大概43分鐘,我的電腦。。。。。。邊看視頻邊刪的。

3、find with delete

$ time find ./ -type f -delete
find ./ -type f -delete  0.43s user 11.21s system 2% cpu 9:13.38 total
# 用時9分鐘。

4、rsync 刪除

# 首先建立空文件夾blanktest
$ time rsync -a --delete blanktest/ test/
rsync -a --delete blanktest/ test/  0.59s user 7.86s system 51% cpu 16.418 total16s,很好很強大。

5、Python 刪除

import os
import timeit
def main():    for pathname,dirnames,filenames in os.walk('/home/username/test'):        for filename in filenames:            
		file=os.path.join(pathname,filename)            
		os.remove(file)            

if __name__=='__main__':
t=timeit.Timer('main()','from __main__ import main')
print t.timeit(1)  
1
2
$ python test.py
529.309022903
# 大概用時9分鐘。

6、Perl 刪除

$ time perl -e 'for(<*>){((stat)[9]<(unlink))}'
perl -e 'for(<*>){((stat)[9]<(unlink))}'  1.28s user 7.23s system 50% cpu 16.784 total16s,這個應該最快了。

7、結果:

rm:文件數量太多,不可用
find with -exec 50萬文件耗時43分鐘
find with -delete 9分鐘
Perl  16sPython 9分鐘
rsync with -delete  16s

# 結論:刪除大量小文件rsync最快,最方便。
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章