C# 文件相关操作

2018-06-17 19:26:49来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

百度搜的,下面这个写的挺全的。
 
FROM Pegasus923
http://www.cnblogs.com/pegasus923/archive/2011/01/26/1944838.html
 

创建文件
删除文件
移动文件
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
 
namespace CreateFile
{
    class Program
    {
        static void Main(string[] args)
        {
            string path = @"f:\MyDir\test\test";
            string target = @"f:\TestDir";
            Directory.CreateDirectory(path);
            try
            {
                // Determine whether the directory exists.
                if (!Directory.Exists(path))
                {
                    // Create the directory it does not exist.
                    Directory.CreateDirectory(path);
                }
 
                if (Directory.Exists(target))
                {
                    // Delete the target to ensure it is not there.
                    Directory.Delete(target, true);
                }
 
                // Move the directory.
                Directory.Move(path, target);
 
                // Create a file in the directory.
                File.CreateText(target + @"\myfile.txt");
 
                // Count the files in the target directory.
                Console.WriteLine("The number of files in {0} is {1}",
                    target, Directory.GetFiles(target).Length);
            }
            catch (Exception e)
            {
                Console.WriteLine("The process failed: {0}", e.ToString());
            }
 
            Console.ReadKey();
        }
    }
}

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:ASP.NET网站开发中的配置文件

下一篇:C#下利用封包、拆包原理解决Socket粘包、半包问题(新手篇)