“Python Delete File” Ответ

Если файл существует

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 Delete File

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 удалить файл

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

Python Delete сохранившее изображение

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

Python удалить содержание файла

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

Python Delete File

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

Ответы похожие на “Python Delete File”

Вопросы похожие на “Python Delete File”

Больше похожих ответов на “Python Delete File” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования