还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

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

来源:清泛原创     2016-10-25 10:17:35    人气:     我有话说( 0 人参与)

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

先使用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

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: