PathFileExists和PathIsDirectory
头文件:shlwapi.h
原型:
BOOL PathFileExists(LPCTSTR lpszPath);
BOOL PathIsDirectory(LPCTSTR pszPath);
如果是一个有效的路径或文件时,返回TRUE,否则返回FALSE。
注:当调用以上函数时,要添加头文件和库文件
添加库文件的方法:#pragma comment(lib, "shlwapi.lib")
PathFileExists和PathIsDirectory
头文件:shlwapi.h
原型:
BOOL PathFileExists(LPCTSTR lpszPath);
BOOL PathIsDirectory(LPCTSTR pszPath);
如果是一个有效的路径或文件时,返回TRUE,否则返回FALSE。
注:当调用以上函数时,要添加头文件和库文件
添加库文件的方法:#pragma comment(lib, "shlwapi.lib")
上一篇:C++中using的作用
例如有一个ftp的根目录下有一个config文件夹,我们想看看config文件夹下是否有
access():判断是否具有存取文件的权限相关函数 stat,open,chmod,chown,setuid,setgid表头文件 #include定义函数 int access(const char * pathname, int mode);函数说明&nb
linux 脚本判断一个目录不存在#!/bin/sh`test -d ~/booo`stat=$?if [ $stat -eq 1 ]then `mkdir ~/booo`fiif [ ! -d /mnt/u ]; thenmkdir -p /mnt/u[[ -d /mnt/u ]]&&mkdir /mnt/umkdir /mnt/u 2>/dev/nul
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M