在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
string path = "f:\\哈哈"; if (Directory.Exists(path)) { MessageBox.Show("存在文件夹"); string filename = path+"\\"+"CeShi.xml";//一定要在路径和文件名之间加 \\ if (File.Exists(filename)) { MessageBox.Show("文件存在"); } else { MessageBox.Show("不存在文件"); File.Create(filename);//创建文件 } } else { MessageBox.Show("不存在文件夹"); Directory.CreateDirectory(path);//创建路径 }
以下是代码片段可以自由组合: 06 //Directory.Delete(path, false);//如果文件夹中有文件或目录,此处会报错 08 } 12 Directory.CreateDirectory(path);//创建该文件夹 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论