本文介绍了如何在C#中使用相对路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好朋友
我正在创建一个exe文件,因为我正在运行一个msi文件.为此,我将该msi文件添加到了项目中,现在当我通过.net enviorement运行此应用程序时,其运行和msi文件也为runnig,但是当我复制此exe文件时文件到其他地方,然后显示找不到该路径.
并使用以下给出的相对路径从exe运行我的msi文件:
Hello Friends
I am Creating a exe in that I am running one msi file.For that I added that msi file to project and now When I am running this application thru .net enviorement then its running and msi file also runnig but when I copied my this exe file to some other place then its showing that path not found.
And to run my msi file from exe I m using this relative path given below:
installerFilePath = @"../../sss1.msi";
System.Diagnostics.Process installerProcess;
installerProcess = System.Diagnostics.Process.Start(installerFilePath , "/q");
在此先感谢.
问候
Yogesh
Thanks In Advance.
Regards
Yogesh
推荐答案
这篇关于如何在C#中使用相对路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!