无法使用python删除循环中的文件

时间:2015-04-24 18:45:03

标签: python glob shutil eoserror

我想删除文件夹上的文件而且我有错误。

我的代码

for f in glob ('sub/*.sub'):
     subprocess.call(["php", "AES.class.php" , f])
     shutil.rmtree(f)
     #deplacement des fichier
     for d in glob ('*.ass'):
          shutil.move(d, 'sync')

它给了我以下错误:

Traceback (most recent call last):
  File "start.py", line 26, in <module>
    shutil.rmtree(f)
  File "/usr/lib64/python2.7/shutil.py", line 239, in rmtree
    onerror(os.listdir, path, sys.exc_info())
  File "/usr/lib64/python2.7/shutil.py", line 237, in rmtree
    names = os.listdir(path)
OSError: [Errno 20] Not a directory: 'sub/Ep01.sub'

如何删除文件夹中扩展名为.sub的文件?

2 个答案:

答案 0 :(得分:3)

您需要os.remove而不是shutil.rmtree。具体来说,前一种方法是删除文件,而后者则用于删除目录(及其所有内容)。

for f in glob ('sub/*.sub'):
     subprocess.call(["php", "AES.class.php" , f])
     os.remove(f)
     #deplacement des fichier
     for d in glob ('*.ass'):
          shutil.move(d, 'sync')

答案 1 :(得分:2)

这里有一个例子Deleting all files in a directory with Python

import os

filelist = [ f for f in os.listdir(".") if f.endswith(".bak") ]
for f in filelist:
    subprocess.call(["php", "AES.class.php" , f])
    os.remove(f)