Application.StartupPath获取执行文件路径substring()取特定长度字符串取得根目录

using System.Windows.Forms;

控制台程序添加System.Windows.Forms;

因为是控制台应用程序,还要去添加引用,开始捣鼓了半天不知道怎么回事。哈哈。水。

            //获取了应用程序路径,不包括可执行文件名称。
            string path1 = Application.StartupPath;
            Console.WriteLine(path1);
            //获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。   
            string path2 = Application.ExecutablePath;
            Console.WriteLine(path2);
            //substring()用法
            //取得执行文件根目录
            path1 = path1.Substring(0,path1.LastIndexOf("\\"));
            Console.WriteLine(path1);
            Console.ReadLine();

网上找的:

--------------------------------------------------------------------------------------------------------------------


substring(索引位置,长度)

--------------------------------------------------------------------------------------------------------------------

string str1 =Process.GetCurrentProcess().MainModule.FileName;

//获取和设置当前目录(即该进程从中启动的目录)的完全限定路径。

string str2=Environment.CurrentDirectory;

//获取应用程序的当前工作目录。

string str3=Directory.GetCurrentDirectory();

//获取基目录,它由程序集冲突解决程序用来探测程序集。

string str4=AppDomain.CurrentDomain.BaseDirectory;

//获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。

string str5=Application.StartupPath;

//获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。

string str6=Application.ExecutablePath;

//获取或设置包含该应用程序的目录的名称。

string str7=AppDomain.CurrentDomain.SetupInformation.ApplicationBase
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值