Почему мой файл не открывается с помощью ifstream C ++? - PullRequest
0 голосов
/ 05 декабря 2018

Хотя это довольно простой вопрос, у меня возникают проблемы с открытием файла через 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 голосов
/ 05 декабря 2018

Ваше решение может основываться на проверке, существует ли файл, попробуйте

//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;
}

Также вместо анализа аргументов я бы вручную установил пути, чтобы подтвердить ваши ожидания относительно того, как указывать пути к файлам.

...