File_attribute_archive file archive (files are flagged when backed up or moved).
file_attribute_encrypted encryption, which is content encryption for a file, is the default for a new file to be encrypted in the future, and if the File_attribute_system property is also set, the current property will be invalid.
File_attribute_hidden the Hidden property.
The File_attribute_normal file has no other property settings, and this property can only be used separately.
File_attribute_not_content_indexed does not establish a content index.
File_attribute_offline the Offline property. The file contents are temporarily unavailable. This property is used by Remote Storage software and cannot be changed arbitrarily.
File_attribute_readonly read-only file attributes. The application cannot be written or deleted.
The File_attribute_system file is a system file or is used by the operating system mutex.
File_attribute_temporary temporary files, use the process as far as possible to stay in memory to ensure access speed. qihoocom2008-12-16, 19:57:47attributes_value = GetFileAttributes
Attributes_value &= ~ (File_attribute_hidden | File_attribute_system)
SetFileAttributes (Attributes_value)
Http://www.cnblogs.com/lancidie/archive/2011/06/15/2081185.html
Remove file attributes