Skip to content

Instantly share code, notes, and snippets.

View imxw's full-sized avatar
🎯
Focusing

xuwu imxw

🎯
Focusing
View GitHub Profile
@imxw
imxw / hid-file.py
Created May 6, 2020 04:53
python忽略隐藏文件
def listdir_nohidden(path):
for f in os.listdir(path):
if not f.startswith('.'):
yield os.path.join(path,f)
def listdir_nohidden(path):
return glob.glob(os.path.join(path, '*'))