标题: [问题求助] [已解决]PowerShell把文件夹名称替换到16进制字节里? [打印本页]
作者: a574045075 时间: 2019-11-12 14:12 标题: [已解决]PowerShell把文件夹名称替换到16进制字节里?
如何把文件夹的名称替换到sample.tik的1E0h-1E3h位置,文件夹的名称不固定的,可能是4b534c56,可能是6d511b51或者其他的,最后把文件夹的名称命名到sample.tik(例如文件夹的名称是4b534c56,命名后是4b534c56.tik,文件夹的名称是6d511b51,命名后是6d511b51.tik,或者是其它,反正文件夹的名称不固定的)
作者: ivor 时间: 2019-11-12 14:26
powershell- Function Convert-HexToByteArray {
-
- [cmdletbinding()]
-
- param(
- [parameter(Mandatory=$true)]
- [String]
- $HexString
- )
-
- $Bytes = [byte[]]::new($HexString.Length / 2)
-
- For($i=0; $i -lt $HexString.Length; $i+=2){
- $Bytes[$i/2] = [convert]::ToByte($HexString.Substring($i, 2), 16)
- }
-
- $Bytes
- }
-
- $bytes = [System.IO.File]::ReadAllBytes('title.tmd')
- $file = Get-ChildItem -recurse | Where{$_.Name -match "^[0-9a-fA-F]{8}$"}
- $nameBytes = Convert-HexToByteArray($file.Name)
- for ($i = 0; $i -lt 4; $i++) {
- $bytes[480+$i] = $nameBytes[$i]
- 'title.tmd: {0} => {1}' -f $bytes[480+$i],$nameBytes[$i]
- }
- [System.IO.File]::WriteAllBytes('title.tmd',$bytes)
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |