QT如何共享文件+拷贝文件
QString sharedFolderPathImg = "\\\\"+ IP +"/profileImage/"; // 更换为你的共享文件夹路径
QDir dirImg(sharedFolderPathImg);
dirImg.setFilter(QDir::NoDotAndDotDot | QDir::AllEntries);
QVector<QString> curFileEntryArrayImg = dirImg.entryList().toVector();
for (auto filename : curFileEntryArrayImg)
{
QFile sharedFile(sharedFolderPathImg + filename);
QFile oldFile("C:/chenhe/profileImage/" + filename);
if (oldFile.exists()) {
oldFile.remove();
}
//qDebug() << filename;
sharedFile.copy("C:/chenhe/profileImage/"+ filename);
}
![在这里插入图片描述![](https://i-blog.csdnimg.cn/direct/beaa1211274741f3aa8eec647a493337.png)]
原文地址:https://blog.csdn.net/qq_23136415/article/details/143902269
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!