kar*_*son 2 powershell binaryfiles
我正在尝试使用 PowerShell 将无符号整数(其 4 字节 DWORD 二进制表示形式)写入文件,但我尝试过的所有替代方案都只写入文本。
假设我有这个号码:
$number = [Int] 255
文件内容应该是FF000000(二进制),而不是255(文本)。
我不是 PowerShell 专家,因此非常感谢您的帮助。
找到了解决办法:
$number = [Int] 255
# Convert the number to a byte[4] array
$bytes = [System.BitConverter]::GetBytes($number)
# Write the bytes to a file
Add-Content -Path "D:\FILE.BIN" -Value $bytes -Encoding Byte
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3663 次 |
| 最近记录: |