- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在 C++17 文件系统库中,我们得到了 std::filesystem::remove(path)
,据我所知,它是 boost::的直接端口filesystem::remove(path)
来自 Boost.Filesystem。
但 C++ 从 C89 继承了一个非常相似的函数,称为 std::remove(path)
,它也被记录为从文件系统中删除文件的方法。我隐约意识到这个功能的一些缺陷,例如我相信我听说在 Windows 上 std::remove
不能用于删除当前进程仍保持打开状态的文件。
std::filesystem::remove
是否通过 std::remove
解决了这些问题?我应该更喜欢 std::filesystem::remove
而不是 std::remove
吗?或者前者只是后者的命名空间同义词,具有相同的缺点和陷阱?
我的问题的标题询问了 boost::filesystem::remove(path)
和 std::remove(path)
之间的区别,因为我认为 std::filesystem::remove(path)
可能还没有被许多库供应商实现,但我的理解是它应该基本上是 Boost 版本的直接拷贝。因此,如果您了解 Windows 上的 Boost.Filesystem,您可能也知道足以回答这个问题。
最佳答案
检查随我的 MSVC 安装的标准库源代码,std::experimental::filesystem::remove
调用其内部的 _Unlink
助手,它简单地调用 _wremove
,它只是调用 Windows DeleteFileW
.同样,boost::filesystem::remove
也只是在 Windows 上调用 DeleteFileW
。
std::filesystem::remove
is specified by reference to POSIX remove
, 但在 [fs.conform.9945] 中的全局措辞明确表示不需要实现来提供确切的 POSIX 行为:
Implementations should provide such behavior as it is defined by POSIX. Implementations shall document any behavior that differs from the behavior defined by POSIX. Implementations that do not support exact POSIX behavior should provide behavior as close to POSIX behavior as is reasonable given the limitations of actual operating systems and file systems. If an implementation cannot provide any reasonable behavior, the implementation shall report an error as specified in [fs.err.report]. [ Note: [...] ]
Implementations are not required to provide behavior that is not supported by a particular file system. [ Example: [...] ]
::remove
中的任何怪癖(即关于删除的实际行为而不是要删除的文件的标识)可能是由于底层操作系统 API 的限制。我认为没有理由认为在同一操作系统上实现 std::filesystem::remove
会神奇地做得更好。
关于c++ - std::remove 和 boost::filesystem::remove 之间的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46066263/
我正在使用 .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新手。看起来很简单,但我不明白为什么会发生这种
我是一名优秀的程序员,十分优秀!