使用 PowerShell 将整数作为二进制写入文件

kar*_*son 2 powershell binaryfiles

我正在尝试使用 PowerShell 将无符号整数(其 4 字节 DWORD 二进制表示形式)写入文件,但我尝试过的所有替代方案都只写入文本。

假设我有这个号码:

$number = [Int] 255

文件内容应该是FF000000(二进制),而不是255(文本)。

我不是 PowerShell 专家,因此非常感谢您的帮助。

kar*_*son 5

找到了解决办法:

$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)