mirror of
https://github.com/python/cpython.git
synced 2025-09-13 12:17:24 +00:00
walk() docs: Emphasize that the recursive-delete example is dangerous.
This commit is contained in:
parent
5501b5e3d7
commit
a390c6e194
1 changed files with 2 additions and 0 deletions
|
@ -1126,6 +1126,8 @@ directory is empty:
|
|||
import os
|
||||
from os.path import join
|
||||
# Delete everything reachable from the directory named in 'top'.
|
||||
# CAUTION: This is dangerous! For example, if top == '/', it
|
||||
# could delete all your disk files.
|
||||
for root, dirs, files in os.walk(top, topdown=False):
|
||||
for name in files:
|
||||
os.remove(join(root, name))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue