“Shutil hapus” Kode Jawaban

Shutil hapus

os.remove() #removes a file.
os.rmdir() #removes an empty directory.
shutil.rmtree() #deletes a directory and all its contents.
Real Raccoon

Python cara menghapus direktori dengan file di dalamnya

import shutil

dir_path = '/tmp/img'

try:
    shutil.rmtree(dir_path)
except OSError as e:
    print("Error: %s : %s" % (dir_path, e.strerror))
Strange Salmon

Jawaban yang mirip dengan “Shutil hapus”

Pertanyaan yang mirip dengan “Shutil hapus”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya