Suppose I have two files to upload ,usually I have to create an FileTransferClient Object named ftp
then call ftp.upload(file1) and ftp.upload(file2). How about creating two FileTransferClient Objects,each Object upload one file,just like ftp1.upload(file1),ftp2.upload(files2) at the same time ?Will it work?