“Python löschen Datei” Code-Antworten

Wenn die Datei existiert, löschen Sie Python

import os
filePath = '/home/somedir/Documents/python/logs'

if os.path.exists(filePath):
    os.remove(filePath)
else:
    print("Can not delete the file as it doesn't exists")
Perro Fiel

Python löschen Datei

import os
import shutil

if os.path.exists("demofile.txt"):
  os.remove("demofile.txt") # one file at a time

os.rmdir("test_directory") # removes empty directory
shutil.rmtree("test_directory") # removes not empty directory and its content
Charming Crab

Python OS Entfernen Sie die Datei

import os
os.remove("filename.txt")
Duco Defiant Dogfish

Python gespeichertes Bild löschen

import os
os.remove(file) for file in os.listdir('path/to/directory') if file.endswith('.png')
Robin R

Python löschen Inhalt der Datei

open('file.txt', 'w').close()
Horrible Hornet

Python löschen Datei

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

Ähnliche Antworten wie “Python löschen Datei”

Fragen ähnlich wie “Python löschen Datei”

Weitere verwandte Antworten zu “Python löschen Datei” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen