VC判斷一個(gè)文件為目錄的方法
本文實(shí)例講述了VC判斷一個(gè)文件為目錄的方法,分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
這是一個(gè)自定義函數(shù),用于判斷一個(gè)文件是否為目錄:
* 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文件系統(tǒng)的文件屬性
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 "http://?/" to the path. For more information, see Naming a File.文件名或目錄名。最大長(zhǎng)度為系統(tǒng)的文件名最大長(zhǎng)度。如果是unicode環(huán)境,需要調(diào)用這個(gè)函數(shù)的unicode版本。
Return Value
If the function succeeds, the return value contains the attributes of the specified file or directory.
如果函數(shù)成功了,返回值會(huì)包含以下文件屬性:
If the function fails, the return value is INVALID_FILE_ATTRIBUTES. To get extended error information, call GetLastError.
如果函數(shù)失敗,返回值是INVALID_FILE_ATTRIBUTES. 可以通過(guò)GetLastError獲取更詳細(xì)的出錯(cuò)信息
The attributes can be one or more of the following values.
文件屬性可以是下列值的一個(gè)或多個(gè)的組合。
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. |
希望本文所述對(duì)大家的VC程序設(shè)計(jì)有所幫助。
上一篇:Cocos2d-x 3.x入門(mén)教程(二):Node節(jié)點(diǎn)類(lèi)
欄 目:C語(yǔ)言
下一篇:C語(yǔ)言實(shí)現(xiàn)將字符串轉(zhuǎn)換為數(shù)字的方法
本文標(biāo)題:VC判斷一個(gè)文件為目錄的方法
本文地址:http://mengdiqiu.com.cn/a1/Cyuyan/3184.html
您可能感興趣的文章
- 01-10c語(yǔ)言 跳臺(tái)階問(wèn)題的解決方法
- 01-10如何判斷一個(gè)數(shù)是否為2的冪次方?若是,并判斷出來(lái)是多少次方
- 01-10如何判斷一個(gè)數(shù)是否為4的冪次方?若是,并判斷出來(lái)是多少次方
- 01-10fatal error LNK1104: 無(wú)法打開(kāi)文件“l(fā)ibc.lib”的解決方法
- 01-10顯示任何進(jìn)程加載的DLL文件的代碼
- 01-10數(shù)組中求第K大數(shù)的實(shí)現(xiàn)方法
- 01-10深入探討linux下進(jìn)程的最大線(xiàn)程數(shù)、進(jìn)程最大數(shù)、進(jìn)程打開(kāi)的文
- 01-10使用Inotify 監(jiān)控目錄與文件的方法詳解
- 01-10用c 獲取文件MD5值的實(shí)現(xiàn)方法
- 01-10如何判斷一個(gè)整數(shù)的二進(jìn)制中有多少個(gè)1


閱讀排行
- 1C語(yǔ)言 while語(yǔ)句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹(shù)的示例代碼(圣誕
- 3利用C語(yǔ)言實(shí)現(xiàn)“百馬百擔(dān)”問(wèn)題方法
- 4C語(yǔ)言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語(yǔ)言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語(yǔ)言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語(yǔ)言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 04-02c語(yǔ)言函數(shù)調(diào)用后清空內(nèi)存 c語(yǔ)言調(diào)用
- 04-02func函數(shù)+在C語(yǔ)言 func函數(shù)在c語(yǔ)言中
- 04-02c語(yǔ)言的正則匹配函數(shù) c語(yǔ)言正則表達(dá)
- 04-02c語(yǔ)言用函數(shù)寫(xiě)分段 用c語(yǔ)言表示分段
- 04-02c語(yǔ)言中對(duì)數(shù)函數(shù)的表達(dá)式 c語(yǔ)言中對(duì)
- 04-02c語(yǔ)言編寫(xiě)函數(shù)冒泡排序 c語(yǔ)言冒泡排
- 04-02c語(yǔ)言沒(méi)有round函數(shù) round c語(yǔ)言
- 04-02c語(yǔ)言分段函數(shù)怎么求 用c語(yǔ)言求分段
- 04-02C語(yǔ)言中怎么打出三角函數(shù) c語(yǔ)言中怎
- 04-02c語(yǔ)言調(diào)用函數(shù)求fibo C語(yǔ)言調(diào)用函數(shù)求
隨機(jī)閱讀
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?
- 01-10C#中split用法實(shí)例總結(jié)
- 01-10delphi制作wav文件的方法
- 04-02jquery與jsp,用jquery
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改
- 01-10使用C語(yǔ)言求解撲克牌的順子及n個(gè)骰子
- 01-11ajax實(shí)現(xiàn)頁(yè)面的局部加載
- 01-11Mac OSX 打開(kāi)原生自帶讀寫(xiě)NTFS功能(圖文
- 01-10SublimeText編譯C開(kāi)發(fā)環(huán)境設(shè)置