Hello Debbie,
What exactly is the behaviour when you try to transfer files ?
You may know that problems can occur during file transfer via modems (even via FTP, but less often) when some special characters are encountered and taken by the device as control characters.
Therefore, the best way to make sure the transfer will take place correctly is to uuencode the files. This means converting the files into a 7-bit format, transfer it, then re-assemble 7-bit data units to retrieve the original data (uudecode).
Example : you have 3 files to transfer, let's say file1, file2, file3.
To reduce transfer size, you may want to tar then gzip as follows :
tar cvf file.tar file1 file2 file3 ; gzip file.tar
After that, uuencode the result as follows :
uuencode file.tar.gz file.tar.gz >file.uue
Transfer your file (TAKE, PUT).
After that, uudecode, then guzip and untar the file :
uudecode file.uue
gunzip file.tar.gz
tar xvf file.tar
Hope this helps.
Good luck.
Kodjo.
P.S. Don't forget to rate this answer (from 1 to 10).
Learn and explain...