zoukankan      html  css  js  c++  java
  • c# winform 获取当前程序运行根目录

    //获取当前进程的完整路径,包含文件名(进程名)。
    string str1 = this.GetType().Assembly.Location;

    E:VS workspace学习 单个项目ESCollect_Source_V3inDebugESCollect.exe


    //获取新的Process 组件并将其与当前活动的进程关联的主模块的完整路径,包含文件名(进程名)。
    string str2 = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;

    E:VS workspace学习 单个项目ESCollect_Source_V3inDebugESCollect.exe

    //获取和设置当前目录(即该进程从中启动的目录)的完全限定路径。
    string str3 = System.Environment.CurrentDirectory;

    E:\VS workspace\学习 单个项目\ESCollect_Source_V3\bin\Debug

    //获取当前 Thread 的当前应用程序域的基目录,它由程序集冲突解决程序用来探测程序集。
    string str4 = System.AppDomain.CurrentDomain.BaseDirectory;

    E:\VS workspace\学习 单个项目\ESCollect_Source_V3\bin\Debug\


    //获取和设置包含该应用程序的目录的名称。
    string str5 = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;

    E:\VS workspace\学习 单个项目\ESCollect_Source_V3\bin\Debug\


    //获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。
    string str6 = System.Windows.Forms.Application.StartupPath;

    E:\VS workspace\学习 单个项目\ESCollect_Source_V3\bin\Debug


    //获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。
    string str7 = System.Windows.Forms.Application.ExecutablePath;

    E:\VS workspace\学习 单个项目\ESCollect_Source_V3\bin\Debug\ESCollect.exe


    //获取应用程序的当前工作目录(不可靠)。
    string str8 = System.IO.Directory.GetCurrentDirectory();

    E:VS workspace学习 单个项目ESCollect_Source_V3inDebug

  • 相关阅读:
    Mobile Widget——让开发移动应用就像做网页
    Qcon大会上电子工业出版社博文视点提供全程图书支持
    电子工业出版社PPT图书优秀作者上海书城讲座
    2天玩转单反相机引领时尚娱乐新生活
    Android开发之ADB使用
    交大研究生,就一个字牛
    程序员能力矩阵
    主流浏览器内核概览
    网站成功的三十三个法则
    Checkstyle, PMD, Findbugs对比
  • 原文地址:https://www.cnblogs.com/baozi789654/p/14834095.html
Copyright © 2011-2022 走看看