我正在寻找这个,我找不到任何可以帮助我的东西。我认为这很简单,我需要做的是使用 boost 库在我的网络中显示共享文件夹。
例如
std::string dir = "/home/user";
for (boost::filesystem::directory_iterator it(dir), end; it!=end; it++)
if (boost::filesystem::is_directory(*it))
cout << it->path().filename().generic_string();
这向我显示了路径中的所有文件夹"/home/user"
。问题是,dir
我需要用什么来显示我的网络中的共享文件夹?我尝试"\\", "\\my_pc_name", "\\Workgroup"
但我不知道,我不知道我是否可以这样做。谢谢。