win32--GetFileAttributes
2021-03-10 19:32
标签:ring bsp 文件 类型 href tor 类对象 ret names 根据返回的十进制,对比文件属性,来检索指定文件或目录的文件系统属性。 也可以使用 来快速确定文件是否具有某一属性 另外介绍下path.c_str() 语法: const char *c_str(); c_str()函数返回一个指向正规C字符串的指针常量, 内容与本string串相同. 这是为了与c语言兼容,在c语言中没有string类型,故必须通过string类对象的成员函数c_str()把string 对象转换成c中的字符串样式。 #include using namespace std; int main() if ((d & FILE_ATTRIBUTE_ARCHIVE) == FILE_ATTRIBUTE_ARCHIVE) } win32--GetFileAttributes 标签:ring bsp 文件 类型 href tor 类对象 ret names 原文地址:https://www.cnblogs.com/strive-sun/p/12675095.htmlDWORD d = GetFileAttributes(path.c_str());
if ((d & FILE_ATTRIBUTE_ARCHIVE) == FILE_ATTRIBUTE_ARCHIVE)
#include
#include
{
std::string path;
path = "C:\\Users\\xxx\\OneDrive\\Documents\\1.docx";
cout DWORD d = GetFileAttributes(path.c_str());
{
// The file isn‘t available on local storage...
return 0;
}
文章标题:win32--GetFileAttributes
文章链接:http://soscw.com/index.php/essay/62907.html