Is it possible to open a file using C++ that resides on a server?
e.g.
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
int main() {
int sum = 0;
int x;
ifstream inFile;
inFile.open("ht tp:\\123.321.12 3.321\Files\tes t.txt");
...
e.g.
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
int main() {
int sum = 0;
int x;
ifstream inFile;
inFile.open("ht tp:\\123.321.12 3.321\Files\tes t.txt");
...
Comment