如何访问网络文件?

时间:2013-04-15 20:00:08

标签: c++ windows

using namespace std;

ofstream myfile;
//myfile.open ("Z:\\ABC.TXT");                 // fails Z: is a network drive
//myfile.open("C:\\Temp\\ABC.TXT");            // OK
//myfile.open("Z:\\NETWORK\\02-010E.CHS");     // fails Z:\Network is a network folder

if (myfile.is_open())
    cout << "file is open" << endl;
else
    cout << "file fails to open" << endl;

myfile.close();

问题:似乎ofstream.open不支持在网络驱动器上打开文件。 有没有简单的方法来解决这个问题?

1 个答案:

答案 0 :(得分:4)

试试这个:

  using namespace std;

  ofstream myfile;
  myfile.open("\\\\servername\\filepath\\filename"); 
              //^^should follow this format, servername is not Z drive name

  if (myfile.is_open())
     cout << "file is open" << endl;
 else
     cout << "file fails to open" << endl;

 myfile.close();

我尝试在共享服务器上打开文件,然后输出

file is open

所以它应该有用。

Z驱动器实际上不是真正的物理驱动器,它只是服务器上实际物理驱动器的映射。