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

c# 文件属性读取操作及文件之间操作

时间:2016-11-18 22:51:10      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:源文件   tco   log   inf   追逐理想   data-   之间   adc   lin   

c# 获取文件最后修改日期代码
FileInfo f = new FileInfo(@"c:\1.txt");
Console.WriteLine(f.LastWriteTime.ToString());
c# 获取文件最后访问时间代码
FileInfo f = new FileInfo(@"c:\1.txt");
Console.WriteLine(f.LastAccessTime.ToString());//最后访问
c# 获取文件创建时间代码
FileInfo f = new FileInfo(@"c:\1.txt");
Console.WriteLine(f.CreationTime.ToString());
c# 获取文件大小代码
FileInfo f = new FileInfo(@"c:\1.txt");
Console.WriteLine(f.Length.ToString());
c# 获取文件文件属性代码
FileInfo f = new FileInfo(@"c:\1.txt");
Console.WriteLine(f.Attributes);

C#文件路径

 

 FileInfo f = new FileInfo(@"c:\1.txt");
Console.WriteLine(f.DirectoryName);
 
 C#追加文件
    StreamWriter sw = File.AppendText(Server.MapPath(".")+"\\myText.txt");
    sw.WriteLine("追逐理想");
    sw.WriteLine("kzlll");
    sw.WriteLine(".NET笔记");
    sw.Flush();
    sw.Close();
C#拷贝文件
    string OrignFile,NewFile;
    OrignFile = Server.MapPath(".")+"\\myText.txt";
    NewFile = Server.MapPath(".")+"\\myTextCopy.txt";
    File.Copy(OrignFile,NewFile,true);
C#删除文件
    string delFile = Server.MapPath(".")+"\\myTextCopy.txt";
    File.Delete(delFile);
C#移动文件
    string OrignFile,NewFile;
    OrignFile = Server.MapPath(".")+"\\myText.txt";
    NewFile = Server.MapPath(".")+"\\myTextCopy.txt";
    File.Move(OrignFile,NewFile);
 
 
讲文件从一个目录复制到另一个目录
 FileInfo fi = new FileInfo(path1);
fi.CopyTo(path2, true);
path1源文件路径,path2目标文件路径。
阅读(2423)评论(0)

c# 文件属性读取操作及文件之间操作

标签:源文件   tco   log   inf   追逐理想   data-   之间   adc   lin   

原文地址:http://www.cnblogs.com/ajimide/p/6078572.html

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