PathFileExists用法--使用#include <shlwapi.h>
BOOL PathFileExists(LPCTSTR pszPath);
Determines if a file exists.
---经检测,该函数可以检测文件或目录是否存在!
Remarks
This function tests the validity of the file and path. It works only on the local file system or on a remote drive that has been mounted to a drive letter. It will return FALSE for remote file paths that begin with the UNC names \\server or \\server\share. It will also return FALSE if a mounted remote drive is out of service.
为了使用PathFileExists(),必须包含头文件"shlwapi.h",范例代码如下:
#include <windows.h> #include <iostream.h> #include <shlwapi.h> void main( void ) { // Valid file path name (file is there). char buffer_1[] = "C:\\TEST\\file.txt" ; char *lpStr1; lpStr1 = buffer_1; // Invalid file path name (file is not there). char buffer_2[] = "C:\\TEST\\file.doc" ; char *lpStr2; lpStr2 = buffer_2; // Search for the presence of a file with a true result. int retval = PathFileExists(lpStr1); if (retval == 1) { cout << "Search for the file path of : " << lpStr1 << endl; cout << "The file requested \"" << lpStr1 << "\" is a valid file" << endl; cout << "The return from function is: " << retval << endl; } else { cout << "The file requested " << lpStr1 << " is not a valid file" << endl; cout << "The return from function is: " << retval << endl; } // Search for the presence of a file with a false result. retval = PathFileExists(lpStr2); if (retval == 1) { cout << "\nThe file requested " << lpStr2 << " is a valid file" << endl; cout << "Search for the file path of: " << lpStr2 << endl; cout << "The return from function is: " << retval << endl; } else { cout << "\nThe file requested \"" << lpStr2 << "\" is not a valid file" << endl; cout << "The return from function is: " << retval << endl; } } |
编译后,却发现一个错误:error LNK2001: unresolved external symbol __imp__PathFileExistsA@4
网上搜索了下,发现是因为没有添加相应的lib。添加lib的方法网上有不少,这里使用下面的方法:
这样,就可以通过编译了!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET10 - 预览版1新功能体验(一)