文件夹 新建文件问题
ios::noreplace 不能用求一个类似方法 新建文件夹顺便问下 "" 和 \ 怎么输出?
#include <iostream> #include <fstream> using namespace std; int main() { ifstream in("xxx.xxx"); ofstream out("xx.xx"); if (in == NULL) { cout << "in==NULL" << endl; } if (out == NULL) { cout << "out == NULL" << endl; } }