VC判断一个文件为目录的方法
本文实例讲述了VC判断一个文件为目录的方法,分享给大家供大家参考。具体实现方法如下:
这是一个自定义函数,用于判断一个文件是否为目录:
* check whether a file is a directory
@return true if is a directory, else false(if file not exists, false)
*/
__declspec(dllexport) bool IsDirectory(const char* filename)
{
DWORD dwAttr = ::GetFileAttributes(filename); //得到文件属性
if (dwAttr == 0xFFFFFFFF) // 文件或目录不存在
return false;
else if (dwAttr&FILE_ATTRIBUTE_DIRECTORY) // 如果是目录
return true;
else
return false;
}
以下是GetFileAttribute定义,摘自msdn:
Retrieves a set of FAT file system attributes for a specified file or directory.得到FAT文件系统的文件属性
Parameters
lpFileName
The name of the file or directory.In the ANSI version of this function, the name is limited to MAX_PATH characters. To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend "//?/" to the path. For more information, see Naming a File.文件名或目录名。最大长度为系统的文件名最大长度。如果是unicode环境,需要调用这个函数的unicode版本。
Return Value
If the function succeeds, the return value contains the attributes of the specified file or directory.
如果函数成功了,返回值会包含以下文件属性:
If the function fails, the return value is INVALID_FILE_ATTRIBUTES. To get extended error information, call GetLastError.
如果函数失败,返回值是INVALID_FILE_ATTRIBUTES. 可以通过GetLastError获取更详细的出错信息
The attributes can be one or more of the following values.
文件属性可以是下列值的一个或多个的组合。
Return code/value | Description |
---|---|
FILE_ATTRIBUTE_ARCHIVE |
A file or directory that is an archive file or directory. Applications use this attribute to mark files for backup or removal. 存档文件 |
FILE_ATTRIBUTE_COMPRESSED |
A file or directory that is compressed. For a file, all of the data in the file is compressed. For a directory, compression is the default for newly created files and subdirectories. 压缩文件 |
FILE_ATTRIBUTE_DEVICE |
Reserved; do not use. |
FILE_ATTRIBUTE_DIRECTORY |
The handle that identifies a directory. 目录文件 |
FILE_ATTRIBUTE_ENCRYPTED |
A file or directory that is encrypted. For a file, all data streams in the file are encrypted. For a directory, encryption is the default for newly created files and subdirectories. 加密文件 |
FILE_ATTRIBUTE_HIDDEN |
The file or directory is hidden. It is not included in an ordinary directory listing. 隐藏文件 |
FILE_ATTRIBUTE_NORMAL |
A file or directory that does not have other attributes set. This attribute is valid only when used alone.
|
FILE_ATTRIBUTE_NOT_CONTENT_INDEXED |
The file is not to be indexed by the content indexing service. |
FILE_ATTRIBUTE_OFFLINE |
The data of a file is not available immediately. This attribute indicates that the file data is physically moved to offline storage. This attribute is used by Remote Storage, which is the hierarchical storage management software. Applications should not arbitrarily change this attribute. |
FILE_ATTRIBUTE_READONLY |
A file or directory that is read-only. For a file, applications can read the file, but cannot write to it or delete it. For a directory, applications cannot delete it. |
FILE_ATTRIBUTE_REPARSE_POINT |
A file or directory that has an associated reparse point, or a file that is a symbolic link. |
FILE_ATTRIBUTE_SPARSE_FILE |
A file that is a sparse file. |
FILE_ATTRIBUTE_SYSTEM |
A file or directory that the operating system uses a part of, or uses exclusively. |
FILE_ATTRIBUTE_TEMPORARY |
A file that is being used for temporary storage. File systems avoid writing data back to mass storage if sufficient cache memory is available, because typically, an application deletes a temporary file after the handle is closed. In that scenario, the system can entirely avoid writing the data. Otherwise, the data is written after the handle is closed. |
FILE_ATTRIBUTE_VIRTUAL |
A file is a virtual file. |
希望本文所述对大家的VC程序设计有所帮助。
上一篇:Cocos2d-x 3.x入门教程(二):Node节点类
栏 目:C语言
本文标题:VC判断一个文件为目录的方法
本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/3184.html
您可能感兴趣的文章
- 01-10c语言 跳台阶问题的解决方法
- 01-10如何判断一个数是否为2的幂次方?若是,并判断出来是多少次方
- 01-10如何判断一个数是否为4的幂次方?若是,并判断出来是多少次方
- 01-10fatal error LNK1104: 无法打开文件“libc.lib”的解决方法
- 01-10显示任何进程加载的DLL文件的代码
- 01-10数组中求第K大数的实现方法
- 01-10深入探讨linux下进程的最大线程数、进程最大数、进程打开的文
- 01-10使用Inotify 监控目录与文件的方法详解
- 01-10用c 获取文件MD5值的实现方法
- 01-10如何判断一个整数的二进制中有多少个1
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-10C#中split用法实例总结
- 01-10delphi制作wav文件的方法
- 04-02jquery与jsp,用jquery
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11ajax实现页面的局部加载
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10SublimeText编译C开发环境设置