当前位置:   article > 正文

C#编程-30:创建文件或文件夹_c# 创建文件夹

c# 创建文件夹
1、合并文件夹路径和文件名:
Path.Combine(folderName, fileName);

2、创建文件夹:
Directory.CreateDirectory(path);

3、创建文件:
File.Create(filePath);

4、判断文件是否存在:
File.Exists(path);

5、判断文件夹是否存在:
Directory.Exists(path);

参考链接:
https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/file-system/how-to-create-a-file-or-folder
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号