C#常用文件操作

获取指定文件夹下所有文件

public static List<FileInfo> GetAllFilesInDir(string rootDirPath) {
	List<FileInfo> ret = new List<FileInfo>();
	var pattern = "*";//"*.cs" all csharp scripts
	var allDirInfo = Directory.GetDirectories(sourcePath, pattern , SearchOption.AllDirectories)
	foreach(var di in allDirInfo){
		var allFiles = di.GetFiles();
		ret.AddRange(allFiles );
	}	
	return ret;
}

拷贝整个文件夹到指定文件夹下(非递归)

    public static void CopyEntireDir(string sourcePath, string destPath) {
       //Now Create all of the directories
        foreach (string dirPath in Directory.GetDirectories(sourcePath, "*",
           SearchOption.AllDirectories))
            Directory.CreateDirectory(dirPath.Replace(sourcePath, destPath));

       //Copy all the files & Replaces any files with the same name
        foreach (string newPath in Directory.GetFiles(sourcePath, "*.*",
           SearchOption.AllDirectories))
            File.Copy(newPath, newPath.Replace(sourcePath, destPath), true);
    }

检测代码中的中文字符

case

  • 检测代码中未使用多语言key的地方,硬编码直接写的中文字符串内容
public static CheckNeedLocalized(string word)
	//word = "本地化";
	char fo = word[0];
	var charArray = word.ToCharArray();
	for(var i = 0; i<charArray.Length; i++){
		UnicodeCategory cat = char.GetUnicodeCategory(charArray[i]);
		if (cat == UnicodeCategory.OtherLetter)
		{
				//chinese char
				//do sth you want
		}
		else
		{
				//english char
		}
	}
}
  • 1
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值