在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
用C#在WinXP和WinCE里获取应用程序当前路径 下面的“CurrentPath”属性可以获取应用程序的当前路径,经测试,在WinXP与WinCE下均正常运行。 PS:可以写成静态方法,编译到动态库里,到处都可以用了。 public class Configs { private string m_CurrentPath; private string Platform { get { return Environment.OSVersion.Platform.ToString(); } public string CurrentPath { get { if(Platform.Equals("WinCE")) { m_CurrentPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase); } else if(Platform.Equals("Win32NT")) { m_CurrentPath = Directory.GetCurrentDirectory(); } return m_CurrentPath; } } public Configs() { } |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论