从应用程序运行 SFX:更改工作目录
我有一个启动 SFX(自解压可执行文件)文件并解压它的应用程序。
输入文件位于 c:\sfx\sfx.exe
,但它当前提取到我的应用程序的启动文件夹 (c:\myapp\
,),而不是它所在的位置存储(c:\sfx\
。)
如何更改输出的位置?
I have an application that starts an SFX (self-extracting executable) file and extracts it.
The input file is located at c:\sfx\sfx.exe
but it currently extracts to my application's start up folder (c:\myapp\
,) rather than where it is stored (c:\sfx\
.)
How can I alter where the output goes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您启动应用程序时,“工作目录”是您启动它的目录(除非另外明确指定)。但是,您可以使用
SetCurrentDirectory
的目录
类。引用的 MSDN 页面中的示例:
When you start an application, the 'working directory' is the directory from which you start it (unless explicitly specified otherwise.) You can change this, however, using
SetCurrentDirectory
of theDirectory
class.An example from the referenced MSDN page: