Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
bf89b3a1
Kaydet (Commit)
bf89b3a1
authored
Nis 28, 2003
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
walk() docs: Worked "walking" into the description and the text. Added
a brief example where bottom-up walking is essential.
üst
4aebbb04
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
libos.tex
Doc/lib/libos.tex
+18
-1
No files found.
Doc/lib/libos.tex
Dosyayı görüntüle @
bf89b3a1
...
...
@@ -1053,7 +1053,8 @@ Availability: Macintosh, \UNIX, Windows.
\begin{funcdesc}
{
walk
}{
top
\optional
{
, topdown
\code
{
=True
}}}
\index
{
directory!walking
}
\index
{
directory!traversal
}
\function
{
walk()
}
generates the file names in a directory tree.
\function
{
walk()
}
generates the file names in a directory tree, by
walking the tree either top down or bottom up.
For each directory in the tree rooted at directory
\var
{
top
}
(including
\var
{
top
}
itself), it yields a 3-tuple
\code
{
(
\var
{
dirpath
}
,
\var
{
dirnames
}
,
\var
{
filenames
}
)
}
.
...
...
@@ -1112,6 +1113,22 @@ for root, dirs, files in os.walk('python/Lib/email'):
if 'CVS' in dirs:
dirs.remove('CVS') # don't visit CVS directories
\end{verbatim}
In the next example, walking the tree bottom up is essential:
\function
{
rmdir()
}
doesn't allow deleting a directory before the
directory is empty:
\begin{verbatim}
import os
from os.path import join
# Delete everything reachable from the directory named in 'top'.
for root, dirs, files in os.walk(top, topdown=False):
for name in files:
os.remove(join(root, name))
for name in dirs:
os.rmdir(join(root, name))
\end{verbatim}
\versionadded
{
2.3
}
\end{funcdesc}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment