• C#获取路径


                //获取到bin目录的下层路径:binDebug

                string aa = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;

                string cc = System.AppDomain.CurrentDomain.BaseDirectory;

                

                //获取到bin目录:binDebug

                string dd = System.Environment.CurrentDirectory;

                string ee = System.IO.Directory.GetCurrentDirectory();

                string ff = System.Windows.Forms.Application.StartupPath;

     

                //获取程序.exe

                string bb = System.Windows.Forms.Application.ExecutablePath;

    winform使用相对路径读取文件

    目录结构如下图所示:

     

    方法一:由于生成的exe文件在bindebug目录下,可以使用向上查找目录的方式获取要读取的xml文件

    代码如下:
    string haarXmlPath = @"../../haarcascade_frontalface_alt_tree.xml";

    FileInfo file = new FileInfo(fileName);

    string  fullName = file.FullName;

    方法二:获取exe文件的路径进行截取,分两次进行,然后拼接文件名,形成全路径

    代码如下:
    string haarXmlPath = @"haarcascade_frontalface_alt_tree.xml";

    string fullName = Application.StartupPath.Substring(0, Application.StartupPath.LastIndexOf("\"));

    fullName = fullName.Substring(0, fullName.LastIndexOf("\")) + "\" + haarXmlPath;

     另一种方式:

     代码如下:

    /// <summary>
    /// 获取应用程序根路径
    /// </summary>
    private static string GetApplicationPath()
    {
            string path = Application.StartupPath;
            //string path=AppDomain.CurrentDomain.BaseDirectory; //另一种获取方式
            string folderName = String.Empty;
            while (folderName.ToLower() != "bin")
            {
                path = path.Substring(0, path.LastIndexOf("\"));
                folderName = path.Substring(path.LastIndexOf("\") + 1);
            }
            return path.Substring(0, path.LastIndexOf("\") + 1);
    }
  • 相关阅读:
    C#Winform中treeView控件使用总结
    转:vs发布window应用程序时出错:未能签名 ...setup.exe
    C# 常见集合之前的转换
    开发者眼中的Spring与JavaEE
    运行库到底做了什么?
    C++, Java和C#的编译、链接过程解析
    转载一篇将C/C++ 与lua混合使用入门讲的比较好的文章
    路会越走越窄的
    [DBNETLIB][ConnectionOpen(Connect()).]SQL Server 不存在或拒绝访问 数据库错误 解决办法总结
    Linux学习路线指南
  • 原文地址:https://www.cnblogs.com/candyzhmm/p/6398036.html
Copyright © 2020-2023  润新知