我是Qt的新手,我需要帮助将所有文件从本地计算机的特定路径传输到外部USB驱动器。
答案 0 :(得分:3)
复制单个文件
您可以使用QFile::copy
。
QFile::copy(srcPath, dstPath);
注意:此函数不会覆盖文件,因此您必须删除以前的文件:
if (QFile::exist(dstPath)) QFile::remove(dstPath);
如果需要显示用户界面以获取源路径和目标路径,可以使用QFileDialog
的方法来执行此操作。例如:
bool copyFiles() {
const QString srcPath = QFileDialog::getOpenFileName(this, "Source file", "",
"All files (*.*)");
if (srcPath.isNull()) return false; // QFileDialog dialogs return null if user canceled
const QString dstPath = QFileDialog::getSaveFileName(this, "Destination file", "",
"All files (*.*)"); // it asks the user for overwriting existing files
if (dstPath.isNull()) return false;
if (QFile::exist(dstPath))
if (!QFile::remove(dstPath)) return false; // couldn't delete file
// probably write-protected or insufficient privileges
return QFile::copy(srcPath, dstPath);
}
复制目录的全部内容
我正在扩展案例的答案srcPath
是一个目录。它必须手动和递归完成。这是执行此操作的代码,无需进行错误检查以简化操作。您必须负责选择正确的方法(请参阅QFileInfo::isFile
了解一些想法。
void recursiveCopy(const QString& srcPath, const QString& dstPath) {
QDir().mkpath(dstPath); // be sure path exists
const QDir srcDir(srcPath);
Q_FOREACH (const auto& dirName, srcDir.entryList(QStringList(), QDir::Dirs | QDir::NoDotAndDotDot, QDir::Name)) {
recursiveCopy(srcPath + "/" + dirName, dstPath + "/" + dirName);
}
Q_FOREACH (const auto& fileName, srcDir.entryList(QStringList(), QDir::Files, QDir::Name)) {
QFile::copy(srcPath + "/" + fileName, dstPath + "/" + fileName);
}
}
如果您需要提供目录,可以使用QFileDialog::getExistingDirectory
。
最后评论
两种方法都假定存在srcPath
。如果您使用QFileDialog
方法,则很可能存在(非常可能,因为它不是原子操作,并且目录或文件可能会在对话框和复制操作之间被删除或重命名,但这是一个不同的问题)。
答案 1 :(得分:2)
我已经用QStorageInfo::mountedVolumes()
解决了问题,它返回了连接到机器的设备列表。但除了Pendrive或HDD之外,他们都没有名字。所以(!(storage.name()).isEmpty()))
它将只返回那些设备的路径。
QString location;
QString path1= "/Report/1.txt";
QString locationoffolder="/Report";
foreach (const QStorageInfo &storage, QStorageInfo::mountedVolumes()) {
if (storage.isValid() && storage.isReady() && (!(storage.name()).isEmpty())) {
if (!storage.isReadOnly()) {
qDebug() << "path:" << storage.rootPath();
//WILL CREATE A FILE IN A BUILD FOLDER
location = storage.rootPath();
QString srcPath = "writable.txt";
//PATH OF THE FOLDER IN PENDRIVE
QString destPath = location+path1;
QString folderdir = location+locationoffolder;
//IF FOLDER IS NOT IN PENDRIVE THEN IT WILL CREATE A FOLDER NAME REPORT
QDir dir(folderdir);
if(!dir.exists()){
dir.mkpath(".");
}
qDebug() << "Usbpath:" <<destPath;
if (QFile::exists(destPath)) QFile::remove(destPath);
QFile::copy(srcPath,destPath);
qDebug("copied");
}
}
}
由于我的要求,我必须创建一个文件夹以及USB,我给了文件的静态名称。然后我在QFile::copy(srcPath, dstPath)
的帮助下,将本地机器文件中的数据复制到我在USB中创建的文件中。我希望它会帮助别人。