无法直接在代码中使用 Directory::getFiles()

发布于 2024-10-31 14:02:00 字数 278 浏览 0 评论 0原文

我试图从特定模式的路径中获取几个文件,为此我使用下面的命令,该命令给了我一个错误:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗化ㄋ丶相逢 2024-11-07 14:02:00

您显然没有包含相关标题。

You are obviously not including the relevant header.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文