Skip to content

Commit 55d41bb

Browse files
committed
chapter2
1 parent 3a5f93e commit 55d41bb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import os
2-
for root, directories, files in os.walk(".",topdown=False):
3-
# Iterate over the files in the current "root"
4-
for file_entry in files:
5-
# create the relative path to the file
6-
print('[+] ',os.path.join(root,file_entry))
1+
import os
2+
for root, directories, files in os.walk(".",topdown=False):
3+
# Iterate over the files in the current "root"
4+
for file_entry in files:
5+
# create the relative path to the file
6+
print('[+] ',os.path.join(root,file_entry))
77

88
for name in directories:
9-
print('[++] ',name)
9+
print('[++] ',name)
1010

0 commit comments

Comments
 (0)