“Python Usuń folder” Kod odpowiedzi

OS Usuń cały pyth folderu

import os
import shutil

os.remove('/your/path/to/file.txt') #removes a file.

os.rmdir('/your/folder/path/') #removes an empty directory.

shutil.rmtree('/your/folder/path/') #deletes a directory and all its contents.
Magnificent Moth

Python Usuń folder

import shutil

shutil.rmtree('/folder_name')
Energetic Emu

Usuń zawartość Pythona z katalogu

import os
import glob

files = glob.glob('/YOUR/PATH/*')
for f in files:
    os.remove(f)
oskarzyg

Python Usuń folder i zawartość

import shutil
shutil.rmtree("dir-you-want-to-remove")
Embarrassed Echidna

Python Jak usunąć katalog z plikami

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

Python Usuwanie katalogu lub pliku

>>> os.listdir()
['new_one', 'old.txt']

>>> os.remove('old.txt')
>>> os.listdir()
['new_one']

>>> os.rmdir('new_one')
>>> os.listdir()
[]
SAMER SAEID

Odpowiedzi podobne do “Python Usuń folder”

Pytania podobne do “Python Usuń folder”

Więcej pokrewnych odpowiedzi na “Python Usuń folder” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu