文件管理的基础操作设计读取、复制、移动、删除
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 文件管理
{
class Program
{
static void Main(string[] args)
{
//读取文件
//string path = @"C:\Users\think\source\repos\WinClass\文件管理\demo1.txt";
//if (File.Exists(path))
//{
// string msg = File.ReadAllText(path);
// Console.WriteLine(msg);
//}
//else
//{
// Console.WriteLine("文件不存在!!!");
//}
//复制文件
//string path = @"C:\Users\think\source\repos\WinClass\文件管理\demo1.txt";
//if (File.Exists(path))
//{
// File.Copy(path, @"F:\Test\demo1.txt");
// Console.WriteLine("文件复制成功!");
//}
//else
//{
// Console.WriteLine("文件不存在!!!");
//}
//移动文件
//string path = @"C:\Users\think\source\repos\WinClass\文件管理\demo1.txt";
//if (File.Exists(path))
//{
// File.Move(path, @"F:\Test\demo2.txt");
// Console.WriteLine("文件移动成功!");
//}
//else
//{
// Console.WriteLine("文件不存在!!!");
//}
//删除文件
string path = @"F:\Test\demo1.txt";
if (File.Exists(path))
{
File.Delete(path);
Console.WriteLine("文件删除成功!");
}
else
{
Console.WriteLine("文件不存在!!!");
}
Console.ReadKey();
}
}
}
网友评论