如何删除文件或文件夹?


Answers:


3340

PathPython 3.4+ pathlib模块中的对象还公开了这些实例方法:


5
即使目标目录不为空,Windows上的os.rmdir()也会删除目录符号链接
Lu55 2015年

8
如果该文件不存在,os.remove()则会引发异常,因此可能有必要先检查os.path.isfile()或将其包装try
Ben Crowell '18

2
我希望Path.unlink 1 /是递归的2 /添加一个忽略FileNotfoundError的选项。
杰罗姆

7
只是为了完成... os.remove()如果文件不存在,则会引发异常FileNotFoundError
PedroA

是否os.remove() 使用多个参数来删除多个文件,还是每次为每个文件调用一次?
user742864

291

Python语法删除文件

import os
os.remove("/tmp/<file_name>.txt")

要么

import os
os.unlink("/tmp/<file_name>.txt")

要么

适用于Python版本> 3.5的pathlib

file_to_rem = pathlib.Path("/tmp/<file_name>.txt")
file_to_rem.unlink()

Path.unlink(missing_ok = False)

Unlink方法用于删除文件或符号链接。

如果missing_ok为false(默认值),则在路径不存在时引发FileNotFoundError。
如果missing_ok为true,则将忽略FileNotFoundError异常(与POSIX rm -f命令相同的行为)。
在版本3.8中更改:添加了missing_ok参数。

最佳实践

  1. 首先,检查文件或文件夹是否存在,然后仅删除该文件。这可以通过两种方式实现:
    一。os.path.isfile("/path/to/file")
    b。采用exception handling.

实例os.path.isfile

#!/usr/bin/python
import os
myfile="/tmp/foo.txt"

## If file exists, delete it ##
if os.path.isfile(myfile):
    os.remove(myfile)
else:    ## Show an error ##
    print("Error: %s file not found" % myfile)

异常处理

#!/usr/bin/python
import os

## Get input ##
myfile= raw_input("Enter file name to delete: ")

## Try to delete the file ##
try:
    os.remove(myfile)
except OSError as e:  ## if failed, report it back to the user ##
    print ("Error: %s - %s." % (e.filename, e.strerror))

预期输出

输入要删除的文件名:demo.txt
错误:demo.txt-没有这样的文件或目录。

输入要删除的文件名:rrr.txt
错误:rrr.txt-不允许操作。

输入要删除的文件名:foo.txt

删除文件夹的Python语法

shutil.rmtree()

范例 shutil.rmtree()

#!/usr/bin/python
import os
import sys
import shutil

# Get directory name
mydir= raw_input("Enter directory name: ")

## Try to remove tree; if failed show an error using try...except on screen
try:
    shutil.rmtree(mydir)
except OSError as e:
    print ("Error: %s - %s." % (e.filename, e.strerror))

13
建议在检查之前进行异常处理,因为可以在两行之间删除或更改文件(TOCTOU:en.wikipedia.org/wiki/Time_of_check_to_time_of_use),请参见Python FAQ docs.python.org/3/glossary.html#term-eafp
ÉricAraujo,

84

采用

shutil.rmtree(path[, ignore_errors[, onerror]])

(请参阅关于shutil的完整文档)和/或

os.remove

os.rmdir

(关于os的完整文档。)


6
请将pathlib接口(自Python 3.4起新增)添加到列表中。
Paebbels

38

这是同时使用os.remove和的强大功能shutil.rmtree

def remove(path):
    """ param <path> could either be relative or absolute. """
    if os.path.isfile(path) or os.path.islink(path):
        os.remove(path)  # remove the file
    elif os.path.isdir(path):
        shutil.rmtree(path)  # remove dir and all contains
    else:
        raise ValueError("file {} is not a file or dir.".format(path))

8
即8行代码来模拟ISO C remove(path);调用。
卡兹(Kaz),

2
@Kaz同意烦人,但是是否取消与树木的交易?:-)
Ciro Santilli冠状病毒审查六四事件法轮功

5
os.path.islink(file_path): 一个错误,应该是os.path.islink(path):
Neo li

32

您可以使用内置的pathlib模块(需要Python 3.4+,但也有旧版本PyPI上的反向移植:pathlibpathlib2)。

要删除文件,可以使用以下unlink方法:

import pathlib
path = pathlib.Path(name_of_file)
path.unlink()

rmdir删除文件夹的方法:

import pathlib
path = pathlib.Path(name_of_folder)
path.rmdir()

2
但是非空目录呢?
Pranasas '18

@Pranasas不幸的是,似乎没有任何东西(本地)pathlib可以处理删除非空目录。但是,您可以使用shutil.rmtree。在其他几个答案中也提到了它,因此我没有包括它。
MSeifert

29

如何在Python中删除文件或文件夹?

对于Python 3,要分别删除文件和目录,请分别使用unlink和对象方法:rmdir Path

from pathlib import Path
dir_path = Path.home() / 'directory' 
file_path = dir_path / 'file'

file_path.unlink() # remove file

dir_path.rmdir()   # remove directory

请注意,您还可以将相对路径与Path对象一起使用,并且可以使用来检查当前的工作目录Path.cwd

要在Python 2中删除单个文件和目录,请参见下面标记的部分。

要删除包含目录的目录,请使用shutil.rmtree,请注意,该目录在Python 2和3中可用:

from shutil import rmtree

rmtree(dir_path)

示范

Path对象是Python 3.4中的新增功能。

让我们用一个目录和文件来演示用法。请注意,我们使用/来连接路径的各个部分,这解决了操作系统之间的问题以及Windows上使用反斜杠(在其中您需要将反斜杠加倍,\\或者使用原始字符串,如r"foo\bar")引起的问题:

from pathlib import Path

# .home() is new in 3.5, otherwise use os.path.expanduser('~')
directory_path = Path.home() / 'directory'
directory_path.mkdir()

file_path = directory_path / 'file'
file_path.touch()

现在:

>>> file_path.is_file()
True

现在让我们删除它们。首先文件:

>>> file_path.unlink()     # remove file
>>> file_path.is_file()
False
>>> file_path.exists()
False

我们可以使用通配符删除多个文件-首先,我们为此创建一些文件:

>>> (directory_path / 'foo.my').touch()
>>> (directory_path / 'bar.my').touch()

然后只需遍历全局模式:

>>> for each_file_path in directory_path.glob('*.my'):
...     print(f'removing {each_file_path}')
...     each_file_path.unlink()
... 
removing ~/directory/foo.my
removing ~/directory/bar.my

现在,演示删除目录:

>>> directory_path.rmdir() # remove directory
>>> directory_path.is_dir()
False
>>> directory_path.exists()
False

如果我们要删除目录及其中的所有内容怎么办?对于此用例,请使用shutil.rmtree

让我们重新创建目录和文件:

file_path.parent.mkdir()
file_path.touch()

并注意rmdir除非它为空,否则它将失败,这就是rmtree如此方便的原因:

>>> directory_path.rmdir()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "~/anaconda3/lib/python3.6/pathlib.py", line 1270, in rmdir
    self._accessor.rmdir(self)
  File "~/anaconda3/lib/python3.6/pathlib.py", line 387, in wrapped
    return strfunc(str(pathobj), *args)
OSError: [Errno 39] Directory not empty: '/home/username/directory'

现在,导入rmtree并将目录传递给该功能:

from shutil import rmtree
rmtree(directory_path)      # remove everything 

我们可以看到整个内容已被删除:

>>> directory_path.exists()
False

Python 2

如果您使用的是Python 2,则有一个名为pathlib2的pathlib模块的反向端口,可以使用pip进行安装:

$ pip install pathlib2

然后您可以将库别名为 pathlib

import pathlib2 as pathlib

或者直接导入Path对象(如此处所示):

from pathlib2 import Path

如果太多,您可以使用删除文件os.removeos.unlink

from os import unlink, remove
from os.path import join, expanduser

remove(join(expanduser('~'), 'directory/file'))

要么

unlink(join(expanduser('~'), 'directory/file'))

您可以使用以下命令删除目录os.rmdir

from os import rmdir

rmdir(join(expanduser('~'), 'directory'))

请注意,还有一个os.removedirs-它仅以递归方式删除空目录,但它可能适合您的用例。


rmtree(directory_path)在python 3.6.6中有效,但在python 3.5.2中无效-您需要rmtree(str(directory_path)))在那里。
斯坦因

4
import os

folder = '/Path/to/yourDir/'
fileList = os.listdir(folder)

for f in fileList:
    filePath = folder + '/'+f

    if os.path.isfile(filePath):
        os.remove(filePath)

    elif os.path.isdir(filePath):
        newFileList = os.listdir(filePath)
        for f1 in newFileList:
            insideFilePath = filePath + '/' + f1

            if os.path.isfile(insideFilePath):
                os.remove(insideFilePath)

1
这只会删除文件夹和子文件夹中的文件,而不会
破坏

4

shutil.rmtree是异步函数,因此,如果要检查它是否完成,可以使用while ... loop

import os
import shutil

shutil.rmtree(path)

while os.path.exists(path):
  pass

print('done')

1
shutil.rmtree不应该是异步的。但是,它似乎在Windows上受到病毒扫描程序的干扰。
mhsmith

@mhsmith 病毒扫描程序?那是wild测,还是您实际上知道它们会引起这种影响?如果是这样的话,那该如何运作?
Mark Amery

2

删除文件:

os.unlink(path, *, dir_fd=None)

要么

os.remove(path, *, dir_fd=None)

这两个功能在语义上是相同的。此功能删除(删除)文件路径。如果path不是文件,而是目录,则会引发异常。

删除文件夹:

shutil.rmtree(path, ignore_errors=False, onerror=None)

要么

os.rmdir(path, *, dir_fd=None)

为了删除整个目录树,shutil.rmtree()可以使用。os.rmdir仅在目录为空且存在时才起作用。

要递归删除父文件夹:

os.removedirs(name)

它用self删除每个空的父目录,直到有一些内容的父目录为止

例如 os.removedirs('abc / xyz / pqr')如果目录为空,则会按顺序abc / xyz / pqr,abc / xyz和abc删除目录。

欲了解更多信息检查官方文档:os.unlinkos.removeos.rmdirshutil.rmtreeos.removedirs


1

删除文件夹中的所有文件

import os
import glob

files = glob.glob(os.path.join('path/to/folder/*'))
files = glob.glob(os.path.join('path/to/folder/*.csv')) // It will give all csv files in folder
for file in files:
    os.remove(file)

删除目录中的所有文件夹

from shutil import rmtree
import os

// os.path.join()  # current working directory.

for dirct in os.listdir(os.path.join('path/to/folder')):
    rmtree(os.path.join('path/to/folder',dirct))

0

为了避免ÉricAraujo 的注释突出显示的TOCTOU问题,您可以捕获异常以调用正确的方法:

def remove_file_or_dir(path: str) -> None:
    """ Remove a file or directory """
    try:
        shutil.rmtree(path)
    except NotADirectoryError:
        os.remove(path)

因为shutil.rmtree()将仅删除目录,os.remove()或者os.unlink()仅将删除文件。


shutil.rmtree()不仅删除目录,还删除其内容。
Tiago Martins Peres李大仁

-1

subprocess如果您喜欢编写漂亮且易读的代码,那么我建议您使用:

import subprocess
subprocess.Popen("rm -r my_dir", shell=True)

而且,如果您不是软件工程师,那么可以考虑使用Jupyter。您可以简单地输入bash命令:

!rm -r my_dir

传统上,您使用shutil

import shutil
shutil.rmtree(my_dir) 

3
避免子过程的做法
dlewin

3
我不建议subprocess这样做。shutil.rmtree确实可以rm -r完成工作,并能在Windows上工作。
Mark Amery
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.