码迷,mamicode.com
首页 > Windows程序 > 详细

C# Directory和DirectoryInfo类(文件目录操作)

时间:2017-08-15 14:17:23      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:creat   key   exists   png   namespace   gen   line   class   实例化   

技术分享

对目录操作例子:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;

namespace DirectoryandDirectoryInfo
{
    class Program
    {
        static void Main(string[] args)
        {
            string dirPath = "d:\\dir2";
            string filePath = string.Format("{0}\\{1}", dirPath, "test.txt");
            //判断当前目录是否存在
            if (!Directory.Exists(dirPath))
            {
                //创建目录
                Directory.CreateDirectory(dirPath);
                Console.WriteLine("创建一个目录{0}", dirPath);
            }
            else
            {
                Console.WriteLine("目录{0}已存在", dirPath);
            }
            //实例化文件对象
            FileInfo file = new FileInfo(filePath);
            //判断文件是否存在
            if (!file.Exists)
            {
                //创建文件
                file.Create();
                Console.WriteLine("创建文件{0}",filePath);
            }
            else
            {
                Console.WriteLine("文件{0}已存在", filePath);
            }
            Console.ReadKey();
        }
    }
}

技术分享

技术分享

 

C# Directory和DirectoryInfo类(文件目录操作)

标签:creat   key   exists   png   namespace   gen   line   class   实例化   

原文地址:http://www.cnblogs.com/lbonet/p/7364605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!