工作目录
如何使工作目录成为“调试目录”但不是通过属性,而是通过代码?
How do I make the working directory the "debug directory" but not through the properties, but through the code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我用于 Windows 应用程序的方式。
显然,目录“Debug”将位于当前工作目录内。
升级:
或者创建一个目录:
顺便说一句,如果您需要知道当前的工作目录在哪里,请使用类似以下内容的内容:
That's what I use for Windows apps.
Obviously, the directory "Debug" would be inside the current working directory.
To go up a level:
Or to make a directory:
Incidentally, if you need to know where your working directory currently is, use something like:
在您自己的代码中,不存在“调试目录”之类的东西。这是调试器或 IDE 的属性。
In your own code, there's no such thing as a "debug directory". That's a property of your debugger or IDE.