Created
June 17, 2021 01:37
-
-
Save daejinseok/d7cf53c1b00d19ec72d10989be6c5111 to your computer and use it in GitHub Desktop.
binary 파일을 base64 파일로 변환하고 다시 binary파일로 변경
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encode from binary file to base64txt | |
$outpath = (Join-Path (pwd) 'out_base64.txt'); | |
$inpath = (Join-Path (pwd) 'data.jpg'); | |
[IO.File]::WriteAllText($outpath, ([convert]::ToBase64String(([IO.File]::ReadAllBytes($inpath))))) | |
# decode from base64txt to binary file | |
$outpath = (Join-Path (pwd) 'outdata2.jpg'); | |
$inpath = (Join-Path (pwd) 'out_base64.txt'); | |
[IO.File]::WriteAllBytes($outpath, ([convert]::FromBase64String(([IO.File]::ReadAllText($inpath))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment