Skip to content

Instantly share code, notes, and snippets.

View hgz6536's full-sized avatar
🤖
working

psp hgz6536

🤖
working
View GitHub Profile
@hgz6536
hgz6536 / list_dir_files
Created April 21, 2017 10:30
遍历目录的所有文件
#!/usr/bin/python
def print_directory_contents(sPath):
import os
for sChild in os.listdir(sPath):
#print sChild
sChildPath = os.path.join(sPath,sChild)
if os.path.isdir(sChildPath):
print_directory_contents(sChildPath)
else:
print sChildPath