如何以编程方式将文件的权限更改为可写?

输入是只读文件,并且我想知道是否有一种通用方法可以保证无论哪个版本的Windows(XP,Server-2003或更高版本)都可以打开可写性/关闭只读功能)。

最佳答案

Windows中的只读属性是使用attrib command设置的。

exec "attrib +R 12345.jpg" #sets the read-only file attribute
exec "attrib -R 12345.jpg" #removes the read-only file attribute

10-06 00:49