从应用程序运行 SFX:更改工作目录

发布于 2024-11-17 13:58:35 字数 182 浏览 5 评论 0原文

我有一个启动 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 技术交流群。

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

发布评论

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

评论(1

青巷忧颜 2024-11-24 13:58:35

当您启动应用程序时,“工作目录”是您启动它的目录(除非另外明确指定)。但是,您可以使用 SetCurrentDirectory目录 类。

引用的 MSDN 页面中的示例:

string dir = @"C:\test";        
try
{
    //Set the current directory.
    Directory.SetCurrentDirectory(dir);
}
catch (DirectoryNotFoundException e)
{
    Console.WriteLine("The specified directory does not exist. {0}", e);
}
// Print to console the results.
Console.WriteLine("Root directory: {0}", Directory.GetDirectoryRoot(dir));
Console.WriteLine("Current directory: {0}", Directory.GetCurrentDirectory());

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 the Directory class.

An example from the referenced MSDN page:

string dir = @"C:\test";        
try
{
    //Set the current directory.
    Directory.SetCurrentDirectory(dir);
}
catch (DirectoryNotFoundException e)
{
    Console.WriteLine("The specified directory does not exist. {0}", e);
}
// Print to console the results.
Console.WriteLine("Root directory: {0}", Directory.GetDirectoryRoot(dir));
Console.WriteLine("Current directory: {0}", Directory.GetCurrentDirectory());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文