cmd 脚本中的 CD 与 VB.NET 应用程序中的工作目录不同
我从命令行启动 VB.NET 应用程序,然后在应用程序中使用函数 IO.Directory.GetCurrentDirectory() 来获取当前工作目录。但是这个函数返回的目录始终是我的VB.NET EXE的目录。如果我从命令提示符 cd 到某个目录,然后运行 VB.NET 应用程序,是否有办法获取命令提示符正在使用的工作目录?
谢谢, 伊恩
I'm launching my VB.NET application from the command line and then using the function IO.Directory.GetCurrentDirectory() in the application to get the current working directory. But the directory returned from this function is always the directory of my VB.NET EXE. If I cd to a directory from the command prompt and then run the VB.NET application, is there a way to get the working directory that the command prompt is using?
Thanks,
Ian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从命令行,您可以使用
From the command-line, you can use
我认为这是不可能的,所以我找到了解决方法。
I think this is impossible so I found a way around it.