VC/MFC 隐藏文件

原文转自:磐实编程网


使用到一个函数:SetFileAttributes

设置文件属性为隐藏:

SetFileAttributes("C:/Users/Administrator/Desktop/学习资料.txt",   FILE_ATTRIBUTE_HIDDEN);

设置文件属性为普通:

SetFileAttributes("C:/Users/Administrator/Desktop/学习资料.txt",   FILE_ATTRIBUTE_NORMAL); 


以下为MSDN原文:


BOOL SetFileAttributes(LPCTSTR lpFileName, DWORDdwFileAttributes);

Parameters
lpFileName
[in] Pointer to a string that specifies the name of the file whose attributes are to be set.

There is a default string size limit for paths of MAX_PATH characters. This limit is related to how theSetFileAttributes function parses paths.

(其实就是一个文件路径)

dwFileAttributes
[in] Specifies the file attributes to set for the file. This parameter can be a combination of the following values. However, all other values override FILE_ATTRIBUTE_NORMAL.
(指定文件属性,可以使用以下值,但是使用后会覆盖FILE_ATTRIBUTE_NORMAL这个属性)
 
ValueDescription
FILE_ATTRIBUTE_ARCHIVEThe file is an archive file. Applications use this attribute to mark files for backup or removal.
FILE_ATTRIBUTE_HIDDENThe file is hidden. It is not included in an ordinary directory listing.
FILE_ATTRIBUTE_NORMALThe file has no other attributes set. This attribute is valid only if used alone.
FILE_ATTRIBUTE_READONLYThe file is read-only. Applications can read the file but cannot write to it or delete it.
FILE_ATTRIBUTE_SYSTEMThe file is part of the operating system or is used exclusively by it.
FILE_ATTRIBUTE_TEMPORARYThe file is being used for temporary storage. File systems attempt to keep all of the data in memory for quicker access rather than flushing the data back to mass storage. A temporary file should be deleted by the application as soon as it is no longer needed.


Return Values

Nonzero indicates success. Zero indicates failure. To get extended error information, callGetLastError.

(如果返回非零表示成功,返回零表示失败)


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值