标签: python hidden listdir
在python中,有没有办法检查文件属性来过滤掉windows中的隐藏文件?我知道在Linux中,检查一个领先的'。'可以做到这一点但它在Windows中不起作用。我想这样做而不必使用win32 api。代码应该只列出没有隐藏属性的文件/目录。
pathnow = "C:/" for f in os.listdir(pathnow): print f