[完整实例源码]C&C++修改文件只读属性

清泛原创
先使用GetFileAttributes获取文件属性,判断该文件是否是只读,然后SetFileAttributes修改文件属性。
代码如下:
#include "stdafx.h"

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
	//指定要读取文件的属性
	CString strPath = "d:\\test.txt";
	DWORD dwAttrs = GetFileAttributes(strPath);

	//空32,只读33,隐藏34,只读隐藏35
	if (dwAttrs & FILE_ATTRIBUTE_READONLY  && (dwAttrs < 34))
	{
		//去掉文件只读属性
		dwAttrs &= 0x3E;
		SetFileAttributes(strPath, dwAttrs);

		printf("File '%s' readonly attr is removed.\n", strPath);
	}
	else
	{
		//文件加上只读属性
		SetFileAttributes(strPath, FILE_ATTRIBUTE_READONLY);

		printf("File '%s' add readonly attr success.\n", strPath);
	}

	return 0;
}
D盘新建一个test.txt普通文件后,第一次运行(添加只读属性):


第二次运行(移除只读属性):

C++ 只读属性 GetFileAttributes SetFileAttributes

分享到:
评论加载中,请稍后...
创APP如搭积木 - 创意无限,梦想即时!
回到顶部