如何在ssh / server中搜索和使用文件

时间:2019-03-17 05:04:47

标签: c++ ssh server

我的c ++程序正在xCode上运行。程序的一部分是搜索计算机上的文件,然后使用该文件将值存储到数组中。在xCode上一切正常,但是当我将文件.cpp .h .txt移入服务器或ssh时,似乎无法正常工作。

这是我的代码的片段:

case 'W':
            if(heap.capacity == 0)
                cout<< "Sorry!!! It cannot be done. Please initialize the heap first.";
            else{
                file.open("/Users/mbojo/Downloads/HEAPinput2.txt");
                int line;
                int count = 0;
                while(file>>line)
                    count++;
                file.close();
                heap.capacity = count;
                cout<< "COMMAND: " << choice << "\n" << "The capacity is "<<
                heap.capacity << "\nSize is " << heap.size<<endl;
            }
            break;

在ssh / server中我需要更改可读取文件的任何内容吗?

0 个答案:

没有答案