📌  相关文章
📜  c# 如果不存在则创建文件 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:01.146000             🧑  作者: Mango

代码示例2
string rootPath = Path.GetPathRoot(Environment.GetFolderPath(Environment.SpecialFolder.System));
        rootPath += "MTN";
        if (!(File.Exists(rootPath)))
        {
            File.CreateText(rootPath);
        }