在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
原文:http://blog.sina.com.cn/s/blog_43aea3250100b9pu.html 第一种方法: string AppPath = AppDomain.CurrentDomain.SetupInformation.ApplicationBase; if (AppPath.EndsWith("\\") || AppPath.EndsWith("/")) AppPath= AppPath.Substring(0, AppPath.Length - 1);
结果:E:\Test\bin\Debug\ 第二种方法: string AppPath = Environment.CurrentDirectory; // 结尾不带"/"
结果:E:\Test\bin\Debug 第三种方法: string AppPath = Directory.GetCurrentDirectory();
结果:E:\Test\bin\Debug 设置程序当前运行目录: Directory.SetCurrentDirectory(path);
|
请发表评论