“Python OS удалить файл” Ответ

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

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 с помощью модуля ОС

import os
if os.path.isfile('/Users/test/new_file.txt'):
    os.remove('/Users/test/new_file.txt')
    print("success")
else:    
    print("File doesn't exists!")
Outrageous Ostrich

Удалить файл ОС Python

import os
ch = os.chdir("Directory")  #for example: E:/../../
files = os.listdir()
for file in files:
    if "file name .format" in file:
        os.remove(file)
        
#code by fawlid
Fawlid

Python3 удалить файл

import os
os.system(f"rm -rf {filename.txt}")
Lazy Loris

Ответы похожие на “Python OS удалить файл”

Вопросы похожие на “Python OS удалить файл”

Больше похожих ответов на “Python OS удалить файл” по Python

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

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