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
068bdb18
Kaydet (Commit)
068bdb18
authored
Agu 03, 1999
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Change the directory tree walking example to use clearer variable
names, some suggested by Joe Ellsworth.
üst
6a619f44
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
11 deletions
+14
-11
libstat.tex
Doc/lib/libstat.tex
+14
-11
No files found.
Doc/lib/libstat.tex
Dosyayı görüntüle @
068bdb18
...
...
@@ -118,23 +118,26 @@ Example:
import os, sys
from stat import *
def
process(dir, func
):
'''recursively descend the directory rooted at dir,
calling func for
each regular file'''
def
walktree(dir, callback
):
'''recursively descend the directory rooted at dir,
calling the callback function for
each regular file'''
for f in os.listdir(dir):
mode = os.stat('
%s/%s' % (dir, f))[ST_MODE]
pathname = '
%s/%s' % (dir, f)
mode = os.stat(pathname)[ST
_
MODE]
if S
_
ISDIR(mode):
#
recurse into directory
process('
%s/%s' % (dir, f), func
)
#
It's a directory, recurse into it
walktree(pathname, callback
)
elif S
_
ISREG(mode):
func('
%s/%s' % (dir, f))
# It's a file, call the callback function
callback(pathname)
else:
print 'Skipping
%s/%s' % (dir, f)
# Unknown file type, print a message
print 'Skipping
%s' % pathname
def
f
(file):
print '
frobbed
', file
def
visitfile
(file):
print '
visiting
', file
if
__
name
__
== '
__
main
__
':
process(sys.argv[1], f
)
walktree(sys.argv[1], visitfile
)
\end{verbatim}
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