- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个进程被 QProcess* 调用。创建后,我将其 finished() 信号连接到一个插槽,该插槽删除一些生成的文件。此过程创建一组在执行时众所周知的文件。我正在为它们中的每一个创建一个 QFile* 对象。我正在尝试在指定进程完成后删除这些文件。
问题是:如果我尝试使用QFile::remove() 或QDir::remove() 删除它们,似乎没有任何反应。但是,如果我尝试重命名它们,它会重命名,但是 在 过程完成之前 - 即使它的完成信号已经发出。此外,QDir::removeRecursively() 会删除它们。我尝试创建一个新目录,将文件移动到该文件夹并使用 Qdir::removeRecursively() - 甚至删除了我所有的桌面 - 但是,正如我所说,“删除文件”插槽在进程真正完成之前被调用。我尝试使用 QProcess::waitForFinished() 来防止这种过早的调用,但它没有用。
顺便说一句,我问用户将文件保存在哪里,这样当我尝试删除它们时,它们可以保存在任何地方。另外,我不能要求管理员权限。
谢谢!
QProcess 调用
QProcess *execute_call = new QProcess(this);
execute_call->setWorkingDirectory(lastSavingLocation + "/control/");
execute_call->setProgram(execute_call->workingDirectory() + "execute.bat");
connect(execute_call, SIGNAL(finished(int)), this, SLOT(DeleteExecutionFiles(int)));
execute_call->start();
execute_call->waitForFinished(-1);
//I tried to put this
//before the start() call, but nothing seems to change
删除文件插槽
void MainWindow::DeleteExecutionFiles(int status)
{
if(status == 0)
{
qDebug() << "slot called";
QFile *lof_mh = new QFile(lastSavingLocation + "/lof-mh.exe");
QFile *libgomp = new QFile(lastSavingLocation + "/libgomp-1.dll");
QFile *libwin = new QFile(lastSavingLocation + "/libwinpthread-1.dll");
QFile *tests_env = new QFile(lastSavingLocation + "/control/lof-mh-testenvironment-tool.exe");
QFile *execute = new QFile(lastSavingLocation + "/control/execute.bat");
QFile *execute_bat = new QFile(lastSavingLocation + "/control/executeParallel.bat");
lof_mh->setFileName(lastSavingLocation + "/lof-mh.exe");
libgomp->setFileName(lastSavingLocation + "/libgomp-1.dll");
libwin->setFileName(lastSavingLocation + "/libwinpthread-1.dll");
tests_env->setFileName(lastSavingLocation + "/control/lof-mh-testenvironment-tool.exe");
execute->setFileName(lastSavingLocation + "/control/execute.bat");
execute_bat->setFileName(lastSavingLocation + "/control/executeParallel.bat");
lof_mh->remove();
libgomp->remove();
libwin->remove();
tests_env->remove();
execute->remove();
execute_bat->remove();
}
}
编辑 1
在使用 qDebug() 和 QFile::errorString() 之后得到了这个
lof_mh.remove();
qDebug() << lof_mh.errorString(); //"Negated Access"
libgomp.remove();
qDebug() << libgomp.errorString(); //"Negated Access"
libwin.remove();
qDebug() << libwin.errorString(); //"Negated Access"
tests_env.remove();
qDebug() << tests_env.errorString(); //"Negated Access"
execute.remove();
qDebug() << execute.errorString(); //"Unknown Error"
execute_bat.remove();
qDebug() << execute_bat.errorString(); //"Unknown Error"
最佳答案
我设法删除了更改文件权限的文件:
lof_mh.setPermissions(QFileDevice::WriteUser | QFileDevice::ReadUser | QFileDevice::ExeUser);
libgomp.setPermissions(QFileDevice::WriteUser | QFileDevice::ReadUser | QFileDevice::ExeUser);
libwin.setPermissions(QFileDevice::WriteUser | QFileDevice::ReadUser | QFileDevice::ExeUser);
tests_env.setPermissions(QFileDevice::WriteUser | QFileDevice::ReadUser | QFileDevice::ExeUser);
execute.setPermissions(QFileDevice::WriteUser | QFileDevice::ReadUser | QFileDevice::ExeUser);
execute_bat.setPermissions(QFileDevice::WriteUser | QFileDevice::ReadUser | QFileDevice::ExeUser);
在那之后,我像往常一样用 QFile::remove() 删除了它们。但是,这带来了另一个问题:当 QProcess* 的 finished() 信号发出时,应该调用 DeleteFiles() 槽,然而,当process 仍在运行,因此文件被删除,它失去对文件的跟踪并崩溃。无论如何,我将创建另一篇文章来检查特定于此主题的答案。
感谢所有提供帮助的人!
关于c++ - QFile "remove()"不删除执行时众所周知的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52082733/
我正在使用 .remove() 方法删除一个 html 元素,同时对于这个元素,我有一个事件处理程序,但它没有被触发。为什么会这样呢?这是jsFiddle和代码:HTML Delete I'm goi
所以我尝试从另一篇文章中编写此代码: while(fscanf(orderFile," %49[^;];%d; %49[^\n]",fileName,&seconds,timeValue) == 3)
我正在阅读 Nicolai M.Josuttis 撰写的“The C++ STL. A Tutorial and References”一书,在专门介绍 STL 算法的一章中,作者陈述如下:如果你调用
是否有一种简单的机制来确定 DownloadManager remove() 何时完成,因为它看起来是部分异步的。该函数几乎立即返回下载表中已删除的条目计数,但实际的文件系统管理似乎被插入了某个后台线
我愿意: getActionBarToolbar().removeView(logoImage); getActionBarToolbar().addView(logoImage, lp); 我得到:
我有类(class)评论一对多关系。在类(class)表中有 id 和 title 列。在 Review 表中,有 id、comment 和 course_id,其中“course_id”作为指向类(
我在 stackoverflow 上阅读了不同的答案,了解如何销毁 wigdet/jQueryObject 并取消绑定(bind)其上的所有事件。 这就是我的想法。 $('选择器').remove()
我有一个由一个线程填充的 byte[] 列表,然后我有另一个线程正在从该列表中读取并通过网络发送项目。 每次我读取线程 2 中的项目时,我都想将其从内存中清除。但是因为我正在使用线程,如果我使用 .r
就算法而言,从连续数组中删除一组元素可以分两部分有效地完成。 将所有不删除的元素移到数组的前面。 将数组标记得更小。 这可以在 C++ 中使用 erase-remove 习惯用法来完成。 vector
我尝试删除包含在 map 中渲染的制造商的 View 。当我单击按钮时,事件 click .ver 被激活,但没有任何反应,并且我收到以下错误:Uncaught TypeError: undefine
场景: 使用 jQuery 2.0.1 构建的应用程序。 您的团队更喜欢原生 JavaScript。 选项有jQuery .remove()和 ChildNode.remove() . 您需要删除节点
最初我有一个像这样的删除功能: function ViewWorkflowDetail(btn, workflowId) { $("#workflowDetailPanel").remov
我正在编写 C++ 代码来解决 Leetcode 中的这个问题:https://leetcode.com/problems/remove-element/ Given an array nums an
根据太阳, "Iterator.remove is the only safe way to modify a collection during iteration; the behavior is
众所周知,从 std::vector 中完全删除所需项的一种好方法是 erase-remove idiom . 如以上链接中所述(截至本文发布日期),在代码中,erase-remove 习惯用法如下所
我在 HashSet 上调用 Iterator.remove() 时遇到问题。 我有一组带有时间戳的对象。在将新项目添加到集合之前,我会遍历集合,识别该数据对象的旧版本并将其删除(在添加新对象之前)。
这段代码: Collection col = new ArrayList(); col.add("a"); col.add("b"); col.add("c");
我试图通过在下面输入来卸载 conda 环境基础, conda env remove -n base 正如我所建议的那样,我尝试通过使用来停用基地 conda deactivate base 我再次尝
我已经对我的 IOS 应用程序进行了质量扫描分析。我收到以下警告: The binary has Runpath Search Path (@rpath) set. In certain cases
这个问题已经有答案了: Properly removing an Integer from a List (8 个回答) 已关闭 4 年前。 我是java新手。看起来很简单,但我不明白为什么会发生这种
我是一名优秀的程序员,十分优秀!