C++学习(二八八)判断文件是否存在
Posted hankern
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习(二八八)判断文件是否存在相关的知识,希望对你有一定的参考价值。
1、Java方法
File file = new File("/data/cow.osgt");
if (!file.exists()) {
System.out.println("文件已创建");
} else {
System.out.println("文件已存在");
}
2、C++方法
#include <iostream>
#include <fstream>
std::fstream _file;
_file.open("/data/cow.osgt",std::ios::in);
if(!_file)
{
std::cout<<"data/cow.osgt"<<"没有被创建";
}
else
{
std::cout<<"data/cow.osgt"<<"已经存在";
}
以上是关于C++学习(二八八)判断文件是否存在的主要内容,如果未能解决你的问题,请参考以下文章