[d]python如何将一个文件的隐藏属性给去掉?双倍给分哦。
感觉使用os.system("attrib -h xxxx")这样的方法太山寨了。
w32api.SetFileAttrib 使用这个感觉大才小用了。。
在网上找了一下使用os.chmod(filepath, stat.S_IWRITE)这样可以去掉只读属性,
但在stat模块里好像没有发现可以去掉隐藏属性的。。求教求教。
--------------------
Double行动:
原帖分数:40
帖子加分:40
[解决办法]
Note
Although Windows supports chmod(), you can only set the file’s read-only flag with it (via the stat.S_IWRITE and stat.S_IREAD constants or a corresponding integer value). All other bits are ignored.
------------------
还是使用w32api.SetFileAttrib