摘要: 目录文件创建 //设置文件路径 string filePath = @"D:\file"; //判断路径目录是否存在 if (!Directory.Exists(filePath)) { //创建该路径目录 Directory.CreateDirectory(filePath); } 返回JSON数 阅读全文
posted @ 2021-04-25 10:03 时光博客 阅读(227) 评论(0) 推荐(0) 编辑