无法直接在代码中使用 Directory::getFiles()
我试图从特定模式的路径中获取几个文件,为此我使用下面的命令,该命令给了我一个错误:
std::vector<std::string> cppFiles;
cppFiles = System::IO::Directory::GetFiles(path, "*.cpp" );
错误位于“系统”上,它说:-名称后跟 :: 必须是一个类或命名空间名称。
我什至尝试使用命名空间系统,但我仍然在命名空间上遇到相同的错误。
我错过了什么吗?
I am trying to get few files from a path of specific pattern and for this I am using the command below which is giving me an error:
std::vector<std::string> cppFiles;
cppFiles = System::IO::Directory::GetFiles(path, "*.cpp" );
Error is on "System" and it says:- name followed by :: must be a class or namespace name.
I even tried putting using namespace System, still I am getting the same error on namespace as well.
Am I missing something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您显然没有包含相关标题。
You are obviously not including the relevant header.