笔记: C#文件操作方法学习

学习笔记:文件目录创建、文件拷贝、文件删除、文件移动、文件夹移动、文件夹删除、获取文件信息

获取app所在资源根路径:

 public static string get_app_path()
        {
            string app_name = Process.GetCurrentProcess().MainModule.FileName;
            string path = Path.GetDirectoryName(app_name);
            return path;

        }

创建文件目录:
        public void create_dir(string path)
        {
            DirectoryInfo folder = new DirectoryInfo(path);
            if (!folder.Exists)
                Directory.CreateDirectory(path);
        }

文件拷贝:
        public void copy_file(string path)
        {
            string[] path_segs = path.Split('\\');
            string name = path_segs[path_segs.Length - 1];
            string save_path = Path.Combine(get_app_path(), name);


            FileInfo file = new FileInfo(path);
            if (file.Exists)
            {
                file.CopyTo(save_path, true);
           }

 }

文件删除:
        public void delete_file(string path)
        {
            FileInfo file = new FileInfo(path);
            if (file.Exists)
            {
                file.Delete();
            }
        }

文件夹删除:
        public void delete_folder(string path)
        {
            DirectoryInfo folder = new DirectoryInfo(path);
            if (folder.Exists)
            {
                folder.Delete(true);
            }
        }

文件移动:
        public void move_file(string file_path, string dst_path)
        {
            FileInfo file = new FileInfo(file_path);
            if (file.Exists)
            {
                file.MoveTo(dst_path);
            }
        }

文件夹移动:
        public void move_folder(string folder_path, string dst_path)
        {
            DirectoryInfo folder = new DirectoryInfo(folder_path);
            if (folder.Exists)
            {
                folder.MoveTo(dst_path);
            }
        }

获取文件的信息:

        public FileInfo get_file_info(string path)
        {
            FileInfo file = new FileInfo(path);
            if (!file.Exists)
                throw new FileNotFoundException("File not found: " + path);

  Console.WriteLine("创建时间:" + file.CreationTime.ToString());
            Console.WriteLine("文件大小:" + file.Length.ToString());

            return file;
        }

打印指定目录下所有文件名称、及所有子文件夹测试:

public void test(path)

{

 DirectoryInfo folder = new DirectoryInfo(path);
        if (!folder.Exists)
            throw new DirectoryNotFoundException("Folder not found: " + path);


         foreach (DirectoryInfo sub_folder in folder.GetDirectories())
         {
              Console.WriteLine(sub_folder.Name);
          }

         foreach (FileInfo file in folder.GetFiles())
         {
                Console.WriteLine(file.Name);
          }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值