Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jsparrow

    Acomdata external hard drive not recognized

    XP Home Edition 2002 Service Pack 3 Product: Acomdata pureDrive - 1 TB Out of the box the device is not recognized by system. Facts: 1. Out of the box, plugged in, connected to usb (front panel of desktop and back). 2. Blue light is on (not blinking). 3. Can hear fan. 4. Device does get...
  2. jsparrow

    FTP: Uploading only partial file

    Trying these works but when receiving more than one file, rather appending all the downloaded files to receive_file, it's overwriting. foreach (@get) {$ftp->get(@get,$receieve_file}; foreach (@get) {$ftp->get($_,$get[$receive_file]);
  3. jsparrow

    FTP: Uploading only partial file

    Thanks Mike!! Maybe you have a tip on this: Doing this it gets all the FTP files and delivers them to the directory in where my PERL script resides. I want to download the files to another local-directory. ## get all files $ftp->cwd($remote_dir); my @get = $ftp->ls; print LOG "@get...
  4. jsparrow

    FTP: Uploading only partial file

    Actually this solved the problem: ## Binary mode $ftp->binary;
  5. jsparrow

    FTP: Uploading only partial file

    Added the timeout but still receiving the error "Missing Interchange trailer segment" (only when sending a large file). It seems to be pushing only 160 lines of data then drops everything else. 1) Is it possible that the script is called before the file is fully created locally? 2) Is it...
  6. jsparrow

    FTP: Uploading only partial file

    Hello, Perl newbie needs some help! If a large file, the below FTP-perl script is only uploading part of the file. If it's a small file, the upload is successful. Our EDI send files all get dumped to one file and then I’m taking that, renaming it, running an external process on them, then...

Part and Inventory Search

Back
Top