为什么我的文件无法使用ifstream C ++打开?

时间:2018-12-05 06:54:21

标签: c++ arguments ifstream

尽管这是一个非常简单的问题,但我无法通过inputFileStream(inputFilePath)打开文件。有人可以引导我朝正确的方向前进吗?

#include <cmath>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <sstream>

using namespace std;

const string ID_LINE = "James McMillan - CS 1336 050 - Assignment 26";

int main(int argc, char *argv[]) {
    cout << ID_LINE << endl << endl;

    // guard clause - invalid number of arguments
    if (argc != 3) {
        cout << "Usage: " << argv[0] << "<input file path> <output file path>" << endl;
        return 1;
    }

    //extract arguments
    string programPath = argv[0];
    string inputFilePath = argv[1];
    string outputFilePath = argv[2];

    cout << "Program path: " << programPath << endl;
    cout << "Input file path: " << inputFilePath << endl;
    cout << "Output file path: " << outputFilePath << endl << endl;


    cout << "Creating input file stream..." << endl;
    ifstream inputFileStream;
    cout << "Created input file stream." << endl;

    cout << "Opening input file stream: " << inputFilePath << endl;
    inputFileStream.open(inputFilePath);

    if (!inputFileStream.is_open()) {
        cout << "Unable to open input file stream: " << inputFilePath << endl;
        return 1;
    }
}

1 个答案:

答案 0 :(得分:0)

您的解决方案可能来自检查文件是否存在,请尝试

//Add this at the top
#include <experimental/filesystem>
//somewhere in the body
const auto has_the_file = std::experimental::filesystem::exists(inputFilePath);
if (!has_the_file)
{
    std::cout << "Oh No! Can't find" << inputFilePath << std::endl;
}

我也不会手动解析参数,而是手动设置路径以确认您对如何指定文件路径的期望。