1 Star 9 Fork 1

Ki_Seki/MOPSO-for-Distribution

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
re-encoding.ps1 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ki-Seki 提交于 2022-04-23 22:40 . first commit
<#
文件:re-encoding.ps1
用途:PowerShell 脚本,用于将 UTF-8 编码的文件转换成系统默认编码的文件,输出结果在与本目录的同级的 encoded 文件夹中
创建:2022-02-06 12:03,Song Shichao,song.shichao@outlook.com
修改:2013-02-09 20:56,Song Shichao,song.shichao@outlook.com
#>
mkdir ..\encoded; # 新建与当前文件夹同级的重编码后的文件夹
Get-ChildItem | ForEach-Object -Process{ # 遍历当前文件夹中的所有文件
if($_ -is [System.IO.FileInfo]){
$new_name = -join ("..\encoded\", $_.name); # 新文件名
& {get-content $_.name -encoding utf8 | set-content $new_name -encoding Default}; # 编码转换为系统默认编码
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ki_seki/mopso-for-distribution.git
git@gitee.com:ki_seki/mopso-for-distribution.git
ki_seki
mopso-for-distribution
MOPSO-for-Distribution
master

搜索帮助