首页 > 代码库 > 获取和设置包括该应用程序的目录的名称
获取和设置包括该应用程序的目录的名称
copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)PluginMvcWeb\Bin\"<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
获取和设置包括该应用程序的目录的名称
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。