Lazycat Posted October 29, 2008 Share Posted October 29, 2008 While this UDF was workable solution, not sure for now, and this is very slow anyway. I suggest you try Ward's Base64 UDF. I tried it on your file and succesfuly got zip archive with two files. This is test example I used:#include "base64.au3" $sBase64 = FileRead("2_Slavinka4_per_7.zip.txt") $bOutput = _Base64Decode($sBase64) $hFile = FileOpen("output.bin", 2+16) FileWrite($hFile, $bOutput) FileClose($hFile) Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) Link to comment Share on other sites More sharing options...
Tipulatoid Posted October 29, 2008 Share Posted October 29, 2008 Thanks, Lazycat. That's what I was searching for. Link to comment Share on other sites More sharing options...
numdig Posted July 25, 2013 Share Posted July 25, 2013 Hi , just an FYI I replaced the declaration to: Func _Base64Encode($s_Input, $b_WordWrap = True, $s_ProgressTitle = '') and deleted: If $b_WordWrap = '' Then $b_WordWrap = True $b_WordWrap was being always TRUE for me, even when I set it to FALSE. I believe this is because "empty string " = FALSE Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now