本文介绍了使用Qt复制目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将目录从一个驱动器复制到另一个驱动器.我选择的目录包含许多子目录和文件.
I want to copy a directory from one drive to another drive. My selected directory contains many sub directories and files.
如何使用Qt实现相同的功能?
How can I implement the same using Qt?
推荐答案
void copyPath(QString src, QString dst)
{
QDir dir(src);
if (! dir.exists())
return;
foreach (QString d, dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot)) {
QString dst_path = dst + QDir::separator() + d;
dir.mkpath(dst_path);
copyPath(src+ QDir::separator() + d, dst_path);
}
foreach (QString f, dir.entryList(QDir::Files)) {
QFile::copy(src + QDir::separator() + f, dst + QDir::separator() + f);
}
}
这篇关于使用Qt复制目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!