自动将指定目录下面的文件转换为UTF-8

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
 
namespace save2Utf8
{
    class Program
    {
        static void Main(string[] args)
        {
            string dir, filters;
            //Console.WriteLine("Please input the directory:");
            //dir = Console.ReadLine();
            dir = @"D:\working\code\trunk\src\OAWeb\OAProject.Admin";
            Console.WriteLine("要转换的路径为:" + dir);
            Console.WriteLine("Please input the filter(such as *.c,*.cpp):");
            filters = Console.ReadLine();
            Console.WriteLine("The following files will be converted:");
            List<string> destfiles = new List<string>();
            foreach (string filter in filters.Split(','))
            {
                foreach (var eachfileinfo in new DirectoryInfo(dir).GetFiles(filter, SearchOption.AllDirectories))
                {
                    destfiles.Add(eachfileinfo.FullName);
                    Console.WriteLine(eachfileinfo.FullName);
                }
            }
            Console.WriteLine("You Sure? (y or n)");
            string ans = Console.ReadLine();
            if (ans.Equals("y", StringComparison.OrdinalIgnoreCase))
            {
                foreach (string destfile in destfiles)
                {
                    File.WriteAllText(destfile, File.ReadAllText(destfile, Encoding.Default), Encoding.UTF8);
                }
                Console.WriteLine("finished.");
            }
            else
            {
                Console.WriteLine("Nothing changed.");
            }
            Console.WriteLine("Press any key to exit.");
            Console.ReadLine();
        }
    }
}

  

posted on   lcs-帅  阅读(409)  评论(0编辑  收藏  举报

编辑推荐:
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示