工作目录-解决方案

发布于 2024-10-16 22:40:38 字数 56 浏览 4 评论 0原文

如何使工作目录成为“解决方案目录”但不是通过属性,而是通过代码?

我在窗户上工作。

How do I make the working directory the "solution directory" but not through the properties, but through the code?

I'm working in windows.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

假情假意假温柔 2024-10-23 22:40:38

如果您的意思是要找到其中包含 .sln 文件的目录并使用它,那么 C++ 中没有 .sln 或 Makefile 之类的概念,或者构建中实际使用的任何其他内容编译您的项目的过程。

这个概念是,您正在构建机器代码以在没有特定运行时环境的情况下运行,尽管它可能需要在运行时查找其他库。

您可以对 .sln 文件的路径或名称进行硬编码,然后让您的程序在文件系统中搜索它(如果找到),但这仅是全部。

If you mean you want to find the directory that has a .sln file in it and work with it, there is no concept in C++ of such a thing as a .sln or a Makefile, or anything else really that was used in the build process to compile your project.

The concept is that you are building machine code to run without a specific runtime environment, although it may need to find other libraries at runtime.

You could hard-code the path in, or the name of the .sln file and then let your program search the filesystem for it in case it finds it, but that's just about all.

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