本文整理汇总了C++中poco::Path::isFile方法的典型用法代码示例。如果您正苦于以下问题:C++ Path::isFile方法的具体用法?C++ Path::isFile怎么用?C++ Path::isFile使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类poco::Path
的用法示例。
在下文中一共展示了Path::isFile方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: delfile
cResult delfile(Poco::Path fullpath)
{
drunner_assert(fullpath.isFile(), "delfile: asked to delete a directory: "+fullpath.toString());
#ifdef _WIN32
SetFileAttributesA(fullpath.toString().c_str(),
GetFileAttributesA(fullpath.toString().c_str()) & ~FILE_ATTRIBUTE_READONLY);
if (0 == DeleteFileA(fullpath.toString().c_str()))
{
if (GetLastError() == ERROR_ACCESS_DENIED)
fatal("Couldn't delete - read only");
if (GetLastError() == ERROR_FILE_NOT_FOUND)
fatal("File not found - "+std::to_string(GetLastError()));
if (GetLastError() == ERROR_SHARING_VIOLATION)
fatal("Sharing violation");
fatal("?!" + std::to_string(GetLastError()));
}
#else
try
{
Poco::File f(fullpath);
if (f.exists())
{
f.setWriteable(true);
f.remove();
}
}
catch (const Poco::Exception & e) {
return cError("Couldn't delete "+fullpath.toString()+" - "+e.what());
}
#endif
logmsg(kLDEBUG, "Deleted " + fullpath.toString());
return kRSuccess;
}