zoukankan      html  css  js  c++  java
  • c# 文件属性读取操作及文件之间操作

    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)
  • 相关阅读:
    supervisor
    ULB
    RAM
    sshpass和做软链接
    阿里RDS
    阿里EMR部署
    kafka原理和操作
    maven---settings.xml配置
    maven项目导出依赖的Jar包以及项目本身以jar包形式导出详细教程
    Maven中settings.xml的配置项说明精讲
  • 原文地址:https://www.cnblogs.com/ajimide/p/6078572.html
Copyright © 2011-2022 走看看