Python 官方文档:入门教程 => 点击学习
问: 如何删除文件或文件夹? 答1: huntsbot.com汇聚了国内外优秀的初创产品创意,可按收入、分类等筛选,希望这些产品与实践经验能给您带来灵感。 os.remove() 删除一个文件。
如何删除文件或文件夹?
huntsbot.com汇聚了国内外优秀的初创产品创意,可按收入、分类等筛选,希望这些产品与实践经验能给您带来灵感。
os.remove() 删除一个文件。
os.rmdir() 删除一个空目录。
shutil.rmtree() 删除目录及其所有内容。
python 3.4+ pathlib 模块中的 Path 对象还公开了这些实例方法:
pathlib.Path.unlink() 删除文件或符号链接。
pathlib.Path.rmdir() 删除一个空目录。
即使目标目录不为空,windows 上的 os.rmdir() 也会删除目录符号链接
如果文件不存在,os.remove() 会引发异常,因此可能需要先检查 os.path.isfile(),或将 try 包装起来。
只是为了完成...如果文件不存在,则 os.remove() 引发的异常是 FileNotFoundError。
os.remove() 是否需要多个参数来删除多个文件,还是每次都为每个文件调用它?
@Jérôme 我认为 3.8 中的 missing_ok=True, added 解决了这个问题!
huntsbot.com全球7大洲远程工作机会,探索不一样的工作方式
删除文件的 Python 语法
import osos.remove("/tmp/.txt")
或者
import osos.unlink("/tmp/.txt")
或者
pathlib Python 库版本 >= 3.4
file_to_rem = pathlib.Path("/tmp/.txt")file_to_rem.unlink()
Path.unlink(missing_ok=False)
用于删除文件或符号链接的取消链接方法。
如果 missing_ok 为 false(默认值),则在路径不存在时引发 FileNotFoundError。如果 missing_ok 为真,FileNotFoundError 异常将被忽略(与 POSIX rm -f 命令的行为相同)。在 3.8 版更改: 添加了 missing_ok 参数。
最佳实践
首先,检查文件或文件夹是否存在,然后只删除该文件。这可以通过两种方式实现: os.path.isfile(“/path/to/file”) b.使用异常处理。
os.path.isfile 的示例
#!/usr/bin/pythonimport osmyfile="/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/pythonimport 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))
相应的输出
Enter file name to delete : demo.txtError: demo.txt - No such file or directory.Enter file name to delete : rrr.txtError: rrr.txt - Operation not permitted.Enter file name to delete : foo.txt
删除文件夹的 Python 语法
shutil.rmtree()
shutil.rmtree() 的示例
#!/usr/bin/pythonimport osimport sysimport shutil# Get directory namemydir= raw_input("Enter directory name: ")## Try to remove tree; if failed show an error using try...except on screentry: shutil.rmtree(mydir)except OSError as e: print ("Error: %s - %s." % (e.filename, e.strerror))
建议进行异常处理而不是检查,因为文件可以在两行之间删除或更改(TOCTOU:en.wikipedia.org/wiki/Time_of_check_to_time_of_use)请参阅 Python 常见问题解答 docs.python.org/3/glossary.html#term-eafp
在 Python 中,EAFP 也优于 LBYL。
在最后一个示例中捕获异常有什么意义?
huntsbot.com聚合了超过10+全球外包任务平台的外包需求,寻找外包任务与机会变的简单与高效。
利用
shutil.rmtree(path[, ignore_errors[, onerror]])
(请参阅 shutil 上的完整文档)和/或
os.remove
和
os.rmdir
(关于 os 的完整文档。)
请将 pathlib 接口(自 Python 3.4 以来的新接口)添加到您的列表中。
huntsbot.com汇聚了国内外优秀的初创产品创意,可按收入、分类等筛选,希望这些产品与实践经验能给您带来灵感。
这是一个同时使用 os.remove 和 shutil.rmtree 的强大函数:
def remove(path): """ param 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 行代码来模拟 ISO C remove(path); 调用。
@Kaz 同意烦人,但删除处理树木吗? :-)
os.path.islink(file_path): 一个错误,应该是 os.path.islink(path):
huntsbot.com – 程序员副业首选,一站式外包任务、远程工作、创意产品分享订阅平台。
您可以使用内置的 pathlib 模块(需要 Python 3.4+,但 PyPI 上有旧版本的向后移植:pathlib、pathlib2)。
要删除文件,有 unlink 方法:
import pathlibpath = pathlib.Path(name_of_file)path.unlink()
或删除 empty 文件夹的 rmdir 方法:
import pathlibpath = pathlib.Path(name_of_folder)path.rmdir()
HuntsBot周刊–不定时分享成功产品案例,学习他们如何成功建立自己的副业–huntsbot.com
但是,非空目录呢?
@Pranasas 不幸的是,pathlib 中似乎没有任何东西(本机)可以处理删除非空目录。但是您可以使用 shutil.rmtree。其他几个答案中都提到了它,所以我没有包括它。
huntsbot.com精选全球7大洲远程工作机会,涵盖各领域,帮助想要远程工作的数字游民们能更精准、更高效的找到对方。
如何在 Python 中删除文件或文件夹?
对于 Python 3,要单独删除文件和目录,请分别使用 unlink 和 rmdir Path 对象方法:
from pathlib import Pathdir_path = Path.home() / 'directory' file_path = dir_path / 'file'file_path.unlink() # remove filedir_path.rmdir() # remove directory
请注意,您还可以对 Path 对象使用相对路径,并且可以使用 Path.cwd 检查您当前的工作目录。
要在 Python 2 中删除单个文件和目录,请参阅下面标记的部分。
要删除包含内容的目录,请使用 shutil.rmtree,并注意这在 Python 2 和 3 中可用:
from shutil import rmtreermtree(dir_path)
示范
Python 3.4 中的新功能是 Path 对象。
让我们用一个来创建目录和文件来演示用法。请注意,我们使用 / 连接路径的各个部分,这可以解决操作系统之间的问题以及在 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
我们可以使用 globbing 删除多个文件 - 首先让我们为此创建一些文件:
>>> (directory_path / 'foo.my').touch()>>> (directory_path / 'bar.my').touch()
然后只需遍历 glob 模式:
>>> for each_file_path in directory_path.glob('*.my'):... print(f'removing {each_file_path}')... each_file_path.unlink()... removing ~/directory/foo.myremoving ~/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 "", line 1, in 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 rmtreermtree(directory_path) # remove everything
我们可以看到整个东西都被删除了:
>>> directory_path.exists()False
蟒蛇2
如果您使用的是 Python 2,则有一个 backport of the pathlib module called pathlib2,可以使用 pip 安装:
$ pip install pathlib2
然后您可以将该库别名为 pathlib
import pathlib2 as pathlib
或者直接导入 Path 对象(如此处所示):
from pathlib2 import Path
如果太多,您可以使用 os.remove or os.unlink 删除文件
from os import unlink, removefrom os.path import join, expanduserremove(join(expanduser('~'), 'directory/file'))
或者
unlink(join(expanduser('~'), 'directory/file'))
您可以使用 os.rmdir 删除目录:
from os import rmdirrmdir(join(expanduser('~'), 'directory'))
请注意,还有一个 os.removedirs - 它只会递归删除空目录,但它可能适合您的用例。
rmtree(directory_path) 适用于 python 3.6.6 但不适用于 python 3.5.2 - 你需要 rmtree(str(directory_path))) 那里。
打造属于自己的副业,开启自由职业之旅,从huntsbot.com开始!
在 Python 中删除文件或文件夹
在 Python 中有多种删除文件的方法,但最好的方法如下:
os.remove() 删除一个文件。 os.unlink() 删除一个文件。它是 remove() 方法的 Unix 名称。 shutil.rmtree() 删除目录及其所有内容。 pathlib.Path.unlink() 删除单个文件 pathlib 模块在 Python 3.4 及更高版本中可用。
os.remove()
示例 1:使用 os.remove() 方法删除文件的基本示例。
import osos.remove("test_file.txt")print("File removed successfully")
示例 2:使用 os.path.isfile 检查文件是否存在并使用 os.remove 将其删除
import os#checking if file exist or notif(os.path.isfile("test.txt")): #os.remove() function to remove the file os.remove("test.txt") #Printing the confirmation message of deletion print("File Deleted successfully")else:print("File does not exist")#Showing the message instead of throwig an error
示例 3:删除具有特定扩展名的所有文件的 Python 程序
import os from os import listdirmy_path = 'C:\Python Pool\Test\'for file_name in listdir(my_path): if file_name.endswith('.txt'): os.remove(my_path + file_name)
示例 4:删除文件夹内所有文件的 Python 程序
要删除特定目录中的所有文件,您只需使用 * 符号作为模式字符串。 #导入os和glob模块 import os, glob #循环通过文件夹项目所有文件,并一一删除 for file in glob.glob(“pythonpool/*”): os.remove(file) print("Deleted " +字符串(文件))
os.unlink()
os.unlink() 是 os.remove() 的别名或另一个名称。在 Unix 操作系统中,删除也称为取消链接。注意:所有功能和语法与 os.unlink() 和 os.remove() 相同。它们都用于删除 Python 文件路径。两者都是 Python 标准库中 os 模块中执行删除功能的方法。
shutil.rmtree()
示例 1:使用 shutil.rmtree() 删除文件的 Python 程序
import shutil import os # location location = "E:/Projects/PythonPool/"# directory dir = "Test"# path path = os.path.join(location, dir) # removing directory shutil.rmtree(path)
示例 2:使用 shutil.rmtree() 删除文件的 Python 程序
import shutil import os location = "E:/Projects/PythonPool/"dir = "Test" path = os.path.join(location, dir) shutil.rmtree(path)
pathlib.Path.rmdir() 删除空目录
Pathlib 模块提供了与文件交互的不同方式。 Rmdir 是允许您删除空文件夹的路径功能之一。首先,您需要为目录选择 Path(),然后调用 rmdir() 方法将检查文件夹大小。如果它是空的,它将删除它。
这是删除空文件夹而不用担心丢失实际数据的好方法。
from pathlib import Pathq = Path('foldername')q.rmdir()
一个优秀的自由职业者,应该有对需求敏感和精准需求捕获的能力,而huntsbot.com提供了这个机会
shutil.rmtree 是异步函数,所以如果你想检查它什么时候完成,你可以使用 while…loop
import osimport shutilshutil.rmtree(path)while os.path.exists(path): passprint('done')
shutil.rmtree 不应该是异步的。但是,它可能出现在带有病毒扫描程序干扰的 Windows 上。
@mhsmith 病毒扫描程序?这是疯狂的猜测,还是你真的知道它们会造成这种影响?如果是这样,那到底是如何工作的?
huntsbot.com提供全网独家一站式外包任务、远程工作、创意产品分享与订阅服务!
import osfolder = '/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)
这将仅删除文件夹和子文件夹中的文件,保持文件夹结构不变..
huntsbot.com全球7大洲远程工作机会,探索不一样的工作方式
对于删除文件:
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.unlink、os.remove、os.rmdir、shutil.rmtree、os.removedirs
保持自己快人一步,享受全网独家提供的一站式外包任务、远程工作、创意产品订阅服务–huntsbot.com
这是我删除目录的功能。 “路径”需要完整的路径名。
import osdef rm_dir(path): cwd = os.getcwd() if not os.path.exists(os.path.join(cwd, path)): return False os.chdir(os.path.join(cwd, path)) for file in os.listdir(): print("file = " + file) os.remove(file) print(cwd) os.chdir(cwd) os.rmdir(os.path.join(cwd, path))
原文链接:https://www.huntsbot.com/qa/Pd5b/how-do-i-delete-a-file-or-folder-in-python?lang=zh_CN&from=csdn
huntsbot.com精选全球7大洲远程工作机会,涵盖各领域,帮助想要远程工作的数字游民们能更精准、更高效的找到对方。
来源地址:https://blog.csdn.net/kalman2019/article/details/128433022
--结束END--
本文标题: 如何在 Python 中删除文件或文件夹?
本文链接: https://lsjlt.com/news/395886.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0