如何在OSX中打開網絡共享文件?我嘗試過和沒有「cifs:」。也嘗試過「192.168.xxx.xxx」,但無法正常工作。謝謝。std :: ifstream訪問mac osx中的網絡文件
const std::string path_name("cifs://netshare.local/data/config.txt");
std::ifstream file(path_name.c_str(), std::ios::binary);
if (file.is_open())
{
file.close();
return true;
}
else
{
// program comes in here
return false;
}
嘗試發現,在終端第一製品的路徑。你能說'ls -l cifs:// netshare.local/data/config.txt'並看到這個文件嗎? –