จะลบไฟล์หรือโฟลเดอร์ใน Python ได้อย่างไร?
จะลบไฟล์หรือโฟลเดอร์ใน Python ได้อย่างไร?
คำตอบ:
os.remove()
ลบไฟล์
os.rmdir()
ลบไดเรกทอรีว่างเปล่า
shutil.rmtree()
ลบไดเรกทอรีและเนื้อหาทั้งหมด
Path
วัตถุจากpathlib
โมดูลPython 3.4+ ยังเปิดเผยวิธีการเช่นนี้:
pathlib.Path.unlink()
ลบไฟล์หรือลิงก์สัญลักษณ์
pathlib.Path.rmdir()
ลบไดเรกทอรีว่างเปล่า
os.remove()
พ่นยกเว้นดังนั้นจึงอาจมีความจำเป็นต้องตรวจสอบก่อนหรือห่อในos.path.isfile()
try
os.remove()
FileNotFoundError
os.remove()
ใช้ข้อโต้แย้งหลายที่จะลบไฟล์หลายหรือไม่ที่คุณเรียกว่าในแต่ละครั้งสำหรับแต่ละไฟล์?
import os
os.remove("/tmp/<file_name>.txt")
หรือ
import os
os.unlink("/tmp/<file_name>.txt")
หรือ
pathlib Library สำหรับ Python เวอร์ชั่น> 3.5
file_to_rem = pathlib.Path("/tmp/<file_name>.txt")
file_to_rem.unlink()
วิธียกเลิกการเชื่อมโยงใช้เพื่อลบไฟล์หรือลิงก์สัญลักษณ์
หาก missing_ok เป็นเท็จ (ค่าเริ่มต้น) FileNotFoundError จะถูกยกขึ้นหากไม่มีเส้นทาง
หาก missing_ok เป็นจริงข้อยกเว้น FileNotFoundError จะถูกละเว้น (ลักษณะการทำงานเช่นเดียวกับคำสั่ง POSIX rm -f)
เปลี่ยนเป็นเวอร์ชั่น 3.8: เพิ่มพารามิเตอร์ missing_ok
os.path.isfile("/path/to/file")
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
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))
ใช้
shutil.rmtree(path[, ignore_errors[, onerror]])
(ดูเอกสารสมบูรณ์เกี่ยวกับการปิดระบบ ) และ / หรือ
os.remove
และ
os.rmdir
(เอกสารที่สมบูรณ์เกี่ยวกับระบบปฏิบัติการ )
นี่คือฟังก์ชั่นที่แข็งแกร่งที่ใช้ทั้งสอง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))
remove(path);
โทรISO C
os.path.islink(file_path):
ข้อผิดพลาดควรจะเป็นos.path.islink(path):
คุณสามารถใช้ในตัวpathlib
โมดูล (ต้องหลาม 3.4+ แต่มี backports สำหรับรุ่นเก่าใน PyPI: pathlib
, pathlib2
)
ในการลบไฟล์มีunlink
วิธีการ:
import pathlib
path = pathlib.Path(name_of_file)
path.unlink()
หรือrmdir
วิธีการลบโฟลเดอร์ว่าง :
import pathlib
path = pathlib.Path(name_of_folder)
path.rmdir()
pathlib
ที่สามารถจัดการกับการลบไดเรกทอรีที่ไม่ว่างเปล่าได้ shutil.rmtree
อย่างไรก็ตามคุณสามารถใช้ มันถูกกล่าวถึงในคำตอบอื่น ๆ อีกหลายคำตอบดังนั้นฉันจึงไม่ได้รวมไว้
ฉันจะลบไฟล์หรือโฟลเดอร์ใน 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)
ใหม่ใน 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.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 และส่งผ่านไดเรกทอรีไปยัง funtion:
from shutil import rmtree
rmtree(directory_path) # remove everything
และเราสามารถเห็นสิ่งทั้งหมดถูกลบออก:
>>> directory_path.exists()
False
หากคุณใช้ Python 2 จะมีbackport ของโมดูล pathlib ชื่อ pathlib2ซึ่งสามารถติดตั้งได้ด้วย pip:
$ pip install pathlib2
และจากนั้นคุณสามารถใช้นามแฝงห้องสมุด pathlib
import pathlib2 as pathlib
หรือเพียงนำเข้าPath
วัตถุโดยตรง(ดังที่แสดงไว้ที่นี่):
from pathlib2 import Path
หากนั่นมากเกินไปคุณสามารถลบไฟล์ด้วยos.remove
หรือos.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)))
มี
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)
shutil.rmtree เป็นฟังก์ชั่นแบบอะซิงโครนัสดังนั้นถ้าคุณต้องการตรวจสอบเมื่อมันเสร็จสมบูรณ์คุณสามารถใช้ในขณะที่ ... ห่วง
import os
import shutil
shutil.rmtree(path)
while os.path.exists(path):
pass
print('done')
shutil.rmtree
ไม่ควรจะไม่ตรงกัน อย่างไรก็ตามมันอาจปรากฏขึ้นบน Windows ที่มีโปรแกรมสแกนไวรัสรบกวน
os.unlink(path, *, dir_fd=None)
หรือ
os.remove(path, *, dir_fd=None)
ทั้งสองฟังก์ชั่นมีความหมายเหมือนกัน ฟังก์ชั่นนี้จะลบ (ลบ) พา ธ ไฟล์ หากพา ธ ไม่ใช่ไฟล์และเป็นไดเร็กทอรีข้อยกเว้นจะถูกยกขึ้น
shutil.rmtree(path, ignore_errors=False, onerror=None)
หรือ
os.rmdir(path, *, dir_fd=None)
เพื่อที่จะลบแผนผังไดเร็กทอรีทั้งหมดshutil.rmtree()
สามารถใช้ได้ os.rmdir
ใช้งานได้เฉพาะเมื่อไดเรกทอรีว่างเปล่าและมีอยู่จริง
os.removedirs(name)
มันจะลบทุกไดเรกทอรีที่ว่างเปล่าด้วยตนเองจนกว่าผู้ปกครองที่มีเนื้อหาบางส่วน
อดีต os.removedirs ('abc / xyz / pqr') จะลบไดเรกทอรีตามคำสั่ง 'abc / xyz / pqr', 'abc / xyz' และ 'abc' หากยังว่างอยู่
สำหรับข้อมูลเพิ่มเติมตรวจสอบเอกสารอย่างเป็นทางการ: os.unlink
, os.remove
, os.rmdir
, shutil.rmtree
,os.removedirs
เพื่อลบไฟล์ทั้งหมดในโฟลเดอร์
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))
เพื่อหลีกเลี่ยงปัญหาTOCTOU ที่เน้นโดยความคิดเห็นของÉric Araujoคุณสามารถตรวจสอบข้อยกเว้นเพื่อเรียกวิธีการที่ถูกต้อง:
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()
ลบไม่เพียง แต่ไดเรกทอรี แต่ยังเนื้อหา
ฉันแนะนำให้ใช้subprocess
ถ้าเขียนรหัสที่สวยงามและอ่านได้คือถ้วยชาของคุณ:
import subprocess
subprocess.Popen("rm -r my_dir", shell=True)
และหากคุณไม่ใช่วิศวกรซอฟต์แวร์คุณอาจลองใช้ Jupyter คุณสามารถพิมพ์คำสั่ง bash:
!rm -r my_dir
ตามเนื้อผ้าคุณใช้shutil
:
import shutil
shutil.rmtree(my_dir)
subprocess
สำหรับสิ่งนี้ shutil.rmtree
ไม่rm -r
's งานได้ดีมีโบนัสเพิ่มของการทำงานบน Windows