• 获取和设置包括该应用程序的目录的名称


    copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)PluginMvcWebBin"
    
    <br />
    // 获取程序的基目录。System.AppDomain.CurrentDomain.BaseDirectory
    <br />
    @System.AppDomain.CurrentDomain.BaseDirectory
    <br />
    // 获取模块的完整路径。System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName
    <br />
    @System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName
    <br />
    <br />
    // 获取和设置当前目录(该进程从中启动的目录)的完全限定目录。System.Environment.CurrentDirectory
    <br />
    @System.Environment.CurrentDirectory
    <br />
    // 获取应用程序的当前工作目录。System.IO.Directory.GetCurrentDirectory()
    <br />
    @System.IO.Directory.GetCurrentDirectory()
    <br />
    // 获取和设置包括该应用程序的目录的名称。
    <br />
    System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase:
    <br />
    @System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase
    <br />
    System.AppDomain.CurrentDomain.SetupInformation.PrivateBinPath:
    <br />
    @System.AppDomain.CurrentDomain.SetupInformation.PrivateBinPath
    <br />
    System.AppDomain.CurrentDomain.SetupInformation.ShadowCopyDirectories :
    <br />
    @System.AppDomain.CurrentDomain.SetupInformation.ShadowCopyDirectories
    
    <br />
    System.AppDomain.CurrentDomain.DynamicDirectory :
    <br />
    @System.AppDomain.CurrentDomain.DynamicDirectory
  • 相关阅读:
    转:Node.js邮件发送组件- Nodemailer 1.0发布
    USACO 5.4 Betsy's Tour(暴力)
    USACO 5.4 Character Recognition(DP)
    Codeforces Round #196 (Div. 2)
    HDU 4681 String(DP)
    HDU 4679 Terrorist’s destroy
    HDU 4669 Mutiples on a circle(环状DP)
    HDU 4666 Hyperspace(曼哈顿距离)
    HDU 2852 KiKi's K-Number(离线+树状数组)
    POJ 3335 Rotating Scoreboard(多边形的核)
  • 原文地址:https://www.cnblogs.com/shiningrise/p/4089272.html
Copyright © 2020-2023  润新知