摘要: 1 public static void OpenDirectory(string path, bool isFile = false) 2 { 3 if (string.IsNullOrEmpty(path)) return; 4 path = path.Replace("/", "\\"); 5 if (isFile) 6 { 7 if (!File.Exists(path)) 8 { 9 D 阅读全文
posted @ 2019-10-14 13:59 AaronBlogs 阅读(3848) 评论(0) 推荐(0) 编辑