判断文件是否存在(C Version)
code from Ogre
const bool FileSystemLayerImpl::fileExists(const Ogre::String& path) const
{
return _access(path.c_str(), 00) == 0;
}
For more about _access, see the MSDN link here
http://msdn.microsoft.com/en-us/library/1w06ktdy(VS.80).aspx
作者:zdd
出处:http://www.cnblogs.com/graphics/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
浙公网安备 33010602011771号