资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

​web、控制台应用程序、Windows服务中获取文件路径的方法

​web、控制台应用程序、Windows服务中获取文件路径的方法

创新互联基于分布式IDC数据中心构建的平台为众多户提供成都移动云计算中心 四川大带宽租用 成都机柜租用 成都服务器租用。

控制台应用程序:Environment.CurrentDirectory、Directory.GetCurrentDirectory()
windows服务:Environment.CurrentDirectory
windows服务安装成功后:

  1. System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName
  2. ///
    /// 获取服务应用程序的安装路径(或者当前安装目录)///

/// /// public static string GetWindowsServiceInstallPath(string ServiceName)

{

string key = @"SYSTEM\CurrentControlSet\Services\" + ServiceName;

string path = Registry.LocalMachine.OpenSubKey(key).GetValue("ImagePath").ToString();

//替换掉双引号

path = path.Replace("\"", string.Empty);

FileInfo fi = new FileInfo(path);

return fi.FullName;

//return fi.FullName.Directory.ToString();

}

//windows 服务中使用log4net
string assemblyFilePath = Assembly.GetExecutingAssembly().Location;
string assemblyDirPath = Path.GetDirectoryName(assemblyFilePath);
string configFilePath = assemblyDirPath + "//log4net.config";
DOMConfigurator.ConfigureAndWatch(new FileInfo(configFilePath));

  /// 
    /// 获取应用程序web.config中的文件配置路径,并返回物理路径
    /// 适用于web应用程序
    /// 
    /// 
    /// 
    public static string GetFileFullpath(string key)
    {
        if (string.IsNullOrEmpty(key)) return string.Empty;

        //获取应用程序的web.config中配置的路径
        string appSetting = System.Configuration.ConfigurationManager.AppSettings[key].ToString();
        //如果到的路径不是物理路径,则映射为物理路径
        if (!Path.IsPathRooted(appSetting)) appSetting = System.Web.HttpContext.Current.Server.MapPath(appSetting);

        return appSetting;
    }

///


/// 获取应用程序.config中的文件配置路径,并返回物理路径
/// 适用于windows服务、控制台等应用程序
///

///
///
public static string GetAssemblyPath(string key)
{
if (string.IsNullOrEmpty(key)) return string.Empty;

        //获取应用程序的web.config中配置的路径
        string appSetting = System.Configuration.ConfigurationManager.AppSettings[key].ToString();
        //如果到的路径不是物理路径,则映射为物理路径
        if (!Path.IsPathRooted(appSetting))
        {
            string assemblyPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
            string dirName = Path.GetDirectoryName(assemblyPath);
            if (dirName.IndexOf(@"\bin\Debug") > -1)
                appSetting = dirName.Replace(@"\bin\Debug", appSetting.Substring(1).Replace(@"/", @"\"));
            else
                appSetting = dirName + appSetting.Substring(1).Replace(@"/", @"\");
        }

        return appSetting;
    }

///


/// 获取应用程序.config中的文件配置路径,并返回物理路径
/// 适用于windows服务应用程序的成功安装之后
///

///
///
public static string GetInstallPath(string key)
{
if (string.IsNullOrEmpty(key)) return string.Empty;

        //获取应用程序的web.config中配置的路径
        string appSetting = System.Configuration.ConfigurationManager.AppSettings[key].ToString();
        //如果到的路径不是物理路径,则映射为物理路径
        if (!Path.IsPathRooted(appSetting))
        {
            string processPath = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
            appSetting = processPath.Substring(0, processPath.LastIndexOf(@"\")) + appSetting.Substring(1).Replace(@"/", @"\");
        }

        return appSetting;
    }


网站栏目:​web、控制台应用程序、Windows服务中获取文件路径的方法
标题网址:http://cdkjz.cn/article/gcooii.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220