Files needs to be uploaded in binary code

by 6 replies
7
I'm trying an installation that requries some file to be loaded in binary code....what does this mean and where do I find instructions on how to do this?
#programming #binary #code #files #uploaded
  • You'll find the option to upload in binary format (1s & 0s) in your FTP software.
  • Your FTP client can transfer files in two modes - Text (sometimes called ASCII) and Binary.

    Most FTP clients use "Auto" mode and make the determination regarding transfer type on their own. In most cases this works fine.

    Occasionally you need to manually set the transfer type, the instructions in your FTP program will tell you how to do this. I may also be able to instruct you if you let me know which FTP program you are using.

    Aloha

    Bill
  • In every ftp program I've run across, the DEFAULT is binary. So you should be farily safe if you need to upload in binary and your binary file has got a non-text extension. (Example - NOT .php or .txt or .html or such - those are usually pre-programmed as text/ascii)

    Also every ftp program I've run across also has a way to select exactly how a file is uploaded. So if you are worried - just tell it to upload in binary. (Talk to Bill, since he has offered. )
  • worse case, open a command prompt and:
    cd /dir/with/file
    ftp ftp.host.com
    user
    password
    cd /dest/dir
    bin
    put file.name file.name
    bye

  • I had this exact question about a week ago....and Bill pointed me in the right direction.

    BTW, did you get my PM Bill?
    • [1] reply
    • Just responded to the last one you sent me, sorry for the delay!

      Bill

Next Topics on Trending Feed