C ++编译器找不到文件

时间:2015-10-02 02:39:41

标签: c++ file io

我已经在这方面工作了很长时间,但似乎无法理解为什么没有读取文件sample_uc_students.txt和sample_smc_grads.txt。它们是我放入文件夹的预制文件,但它们没有打开。

Student* readStudentsFromFile(string filename, int num) {
ifstream studentsStream;
studentsStream.open(filename.c_str());
if (!studentsStream.is_open()) {
    cerr << "Couldn't open the file " << filename << endl;
    return NULL;
}
// create a new array of students with size 'num'
Student* students = new Student[num];
string name, school, sid;
int id;
// read student records from file
for (int i = 0; i < num; i++) {
    getline(studentsStream, name, ',');
    getline(studentsStream, sid, ',');
    getline(studentsStream, school);
    istringstream idConv(sid);
    idConv >> id;
    // create a student object from the record and store it in the array
    students[i] = Student(id, name, school);
}
studentsStream.close();
return students;
}

int main() {

const int SIZE = 10;
const int SMC_SIZE = 5;
const int SMC_UC_GRADS_SIZE = 2;
Student* uc = readStudentsFromFile("sample_uc_students.txt", UC_SIZE);
Student* smc = readStudentsFromFile("sample_smc_grads.txt", SMC_SIZE);

\Time it will take
time_t start, end;

time(&start);
Student* common1 = findCommonStudents1(uc, UC_SIZE, smc, SMC_SIZE,
                                       SMC_UC_GRADS_SIZE);
time(&end);
cout << "Using linear search it took " << difftime(end, start) << " seconds."
<< endl;

/*
 * library sort function to sort an array: sort(arr, arr+size)
 * Note that values must be comparable with the < operator
 */ 


sort(common1, common1 + SMC_UC_GRADS_SIZE);
writeStudentsToFile(common1, SMC_UC_GRADS_SIZE, "smc_grads_at_uc_1.txt");

time(&start);
Student* common2 = findCommonStudents2(uc, UC_SIZE, smc, SMC_SIZE,
                                       SMC_UC_GRADS_SIZE);
time(&end);
cout << "Using binary search it took " << difftime(end, start)
<< " seconds." << endl;

sort(common2, common2 + SMC_UC_GRADS_SIZE);
writeStudentsToFile(common2, SMC_UC_GRADS_SIZE, "smc_grads_at_uc_2.txt");

delete[] smc;
delete[] uc;
delete[] common1;
delete[] common2;
return 0;

}

有关如何打开这些建议的建议,或者我应该尝试通过路径打开它们吗?

1 个答案:

答案 0 :(得分:1)

使用时:

Student* uc = readStudentsFromFile("sample_uc_students.txt", UC_SIZE);

程序希望文件“sample_uc_students.txt”与运行程序的目录相同。它不会在Documents文件夹中查找该文件。

您的选择:

  1. 将文件复制到运行程序的目录。
  2. 使用文件的绝对路径,而不是仅使用文件名。