自学内容网 自学内容网

c# 文件操作 判断路径是否存在,不存在对路径上所有文件进行创建

 public static class FileHelper
{
   static public void Exists(string path)
    {
        if(File.Exists(path))
        {
            return;
        }

        Directory.CreateDirectory(Path.GetDirectoryName(path));
        File.Create(path).Dispose();
    }
}

原文地址:https://blog.csdn.net/weixin_44291381/article/details/135691049

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!