httpget losing format

BlitzPlus Forums/BlitzPlus Programming/httpget losing format

ckob(Posted 2007) [#1]
Any ideas why I can create a text file in blitzplus, upload it to a ftp and use httpget to download the file from a blitz+ app and it works fine but if I create the text file in notepad,wordpad or anything other then blitz the formatting gets all screwed up when I download the file.


skidracer(Posted 2007) [#2]
Ascii mode ftp mode transfer is most likely linuxizing your end of lines. Try switching to binary ftp transfer.


Andres(Posted 2007) [#3]
End of lines:
Linux: chr(13)
Win: chr(13) + chr(10)