首页 > Windows开发 > 详细

C#获取工作目录

时间:2020-05-26 22:06:47      阅读:75      评论:0      收藏:0      [点我收藏+]
 1 using System.Windows.Forms; // 添加库
 2 
 3 namespace WindowsFormsApp1
 4 {
 5     class DBHelper
 6     {
 7         public static void getDebugpath()
 8         {
 9             // 获取Debug的路径
10             string debugpath = Application.StartupPath;
11             // debugpath: F:\C#_Project\test\test5\WindowsFormsApp1\WindowsFormsApp1\bin\Debug
12             string binpath = debugpath.Substring(0, debugpath.LastIndexOf("\\"));
13             // binpath: F:\C#_Project\test\test5\WindowsFormsApp1\WindowsFormsApp1\bin
14             string dbpath = binpath.Substring(0, binpath.LastIndexOf("\\"));
15             // dbpath: F:\C#_Project\test\test5\WindowsFormsApp1\WindowsFormsApp1
16             Console.WriteLine("debugpath: " + debugpath);
17             Console.WriteLine("binpath: " + binpath);
18             Console.WriteLine("dbpath: " + dbpath);
19         }
20         static void Main(string[] args)
21         {
22             GetConnection();
23         }
24     }
25  
26 }

使用System.Windows.Forms中的Application.StartupPath

C#获取工作目录

原文:https://www.cnblogs.com/uhanhi/p/12968606.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!