• 由创建文件想起的。。。


            先给大家看一段代码,如下所示:

     using (FileStream fs = new FileStream(PersonInfoFilePath, FileMode.OpenOrCreate))
                    {
                        using (StreamWriter sw = new StreamWriter(fs))
                        {
                            XDocument xDoc = new XDocument(
                                new XDeclaration("1.0", "utf-8", "yes"),
                                new XElement("PersonInfo",
                                new XElement("Name", Name),
                                new XElement("Tel", Tel),
                                new XElement("Fax", Fax)
                                )
                            );
                            xDoc.Save(sw);
                        }
                    }

    这段代码看上去也似乎没有什么问题,可是我们在工作中可能会有切身的体会,再创建这个文件时,

    是否需要先判断下这个文件所在的目录是否存在啊?很多情况下,我们都是创建在指定目录下的,

    但是这个指定目录是否一定存在呢?如果不存在的话代码就报错了。其实这也是考察我们的思维是否

    缜密的时候。加上下面这个判断就可以避免这个错误了。

              if (!Directory.Exists(PersonInfoFile))
                    {
                        Directory.CreateDirectory(PersonInfoFile);
                    }

    其实写代码很多时候我们不只是要看功能实现了,还要尽可能考虑些异常情况,只有这样写出来的代码

    才有可能健壮。

  • 相关阅读:
    nginx 安装部署
    cordova 安装使用
    git 设置和取消代理
    SQL语句 合并列值 将一列的多个值合并成一行
    idea 注册码 地址:
    mac 安装redis
    redisTemplate 方法
    js 点击 隐藏弹出层
    windows 安装redis
    docker 安装redis
  • 原文地址:https://www.cnblogs.com/kevinGao/p/3138589.html
Copyright © 2020-2023  润新知