代码改变世界

获取安装程序的目录

2008-07-10 18:18  Virus-BeautyCode  阅读(527)  评论(0编辑  收藏  举报


 private string getpath()
        
{
            
string str = Assembly.GetExecutingAssembly().GetName().CodeBase;
            
if (str.ToLower().IndexOf("file:///">= 0)
            
{
                str 
= str.Substring(8, str.Length - 8);
            }

            
string path = System.IO.Path.GetDirectoryName(str);
            
return path;

        }


或者在自定义操作的主输出的CustomActionDate设置
/dir=[TARGETDIR]
然后再installer中就可以使用this.Context.Parameters["dir"]来获取安装界面的文件夹了,但是用户必须选择文件夹,才可以正确识别目录,如果使用默认的话,就会报错,还是不太完美啊,我看需要使用自定义的操作中添加一个选择目录的窗体了,替换自带的选择目录窗体,那就自己可以控制了。