#39;std::filesystem#39; has not been declared after including lt;experimental/filesystemgt;(std::filesystem 在包含 lt;experimental/filesystemgt; 后没有被声明)
问题描述
我查了很多关于c++17下文件系统链接的问题,还是不能成功链接.我的 main.cpp
文件如下.
I have checked a lot of issues about the link of filesystem under c++17 and I still cannot make the link successfully. My main.cpp
file is as the following.
#include <experimental/filesystem>
int main(int argc, char** argv)
{
std::string imageDirectory = "./image";;
std::vector<std::string> imagePath;
for (const auto& entry: std::filesystem::directory_iterator(imageDirectory))
{
imagePath.push_back(entry.path());
std::cout << entry.path() << std::endl;
}
return 0;
}
我的 CMakeLists.txt
如下.
cmake_minimum_required(VERSION 3.8 FATAL_ERROR)
project(visual_hull LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
add_library(dataIO
STATIC
dataIO.hpp
dataIO.cpp)
find_package(OpenCV REQUIRED core highgui imgproc)
target_link_libraries(dataIO ${OpenCV_LIBS})
add_executable(visual_hull main.cpp)
target_link_libraries(visual_hull PUBLIC dataIO
stdc++fs)
错误如下.
/home/SENSETIME/zhangshunkang/Downloads/programming/c++/visual_hull/main.cpp: In function ‘int main(int, char**)’:
/home/SENSETIME/zhangshunkang/Downloads/programming/c++/visual_hull/main.cpp:15:31: error: ‘std::filesystem’ has not been declared
for (const auto& entry: std::filesystem::directory_iterator(imageDirectory))
^
CMakeFiles/visual_hull.dir/build.make:62: recipe for target 'CMakeFiles/visual_hull.dir/main.cpp.o' failed
make[2]: *** [CMakeFiles/visual_hull.dir/main.cpp.o] Error 1
CMakeFiles/Makefile2:72: recipe for target 'CMakeFiles/visual_hull.dir/all' failed
make[1]: *** [CMakeFiles/visual_hull.dir/all] Error 2
Makefile:83: recipe for target 'all' failed
make: *** [all] Error 2
推荐答案
您使用 std::filesystem::directory_iterator
.std::filesystem::directory_iterator
和整个命名空间 std::filesystem
在头文件
中声明.
You use std::filesystem::directory_iterator
. std::filesystem::directory_iterator
and the entire namespace std::filesystem
are declared in the header <filesystem>
.
您尚未包含标题
.相反,您包含了
.这个头文件没有声明 std::filesystem::directory_iterator
.相反,它声明了 std::experimental::filesystem::directory_iterator
.
You haven't included the header <filesystem>
. Instead, you've included <experimental/filesystem>
. This header does not declare std::filesystem::directory_iterator
. Instead, it declares std::experimental::filesystem::directory_iterator
.
您可以始终使用标准文件系统库或技术规范中的实验文件系统库,但不得将它们混合在一起.如果您的目标是 C++17,那么您应该使用
.
You can consistently use either the standard filesystem library, or the experimental filesystem library from the technical specification, but you must not mix them together. If you're targeting C++17, then you should use <filesystem>
.
我会得到文件系统的错误:没有这样的文件或目录
I will get the error that filesystem: No such file or directory
理想的解决方案是将编译器升级到对 C++17 提供非实验性支持的版本.否则使用实验性 TS 或 Boost.
The ideal solution is to upgrade your compiler to a version that has non-experimental support for C++17. Otherwise use the experimental TS or Boost.
这篇关于'std::filesystem' 在包含 <experimental/filesystem> 后没有被声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:'std::filesystem' 在包含 <experimental/filesystem> 后没有被声明
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01