自动将指定目录下面的文件转换为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(); } } } |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 开发者必知的日志记录最佳实践
· 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吧