in reply to Bad File descriptor Error

am trying to get a list of log files from a mobile device

get() tries to retrieve a file not the list of files. Why don't you use ls()?

--
Regards
- Samar

Replies are listed 'Best First'.
Re^2: Bad File descriptor Error
by amvarma (Initiate) on Jan 04, 2011 at 11:17 UTC
    I need to download the log files from device using ftp So
    using get().Any other idea is welcome.
    Regards
    Amit

      It looks like the ftp server can't find the file you're requesting. What happens if you try to download the files listed in "api_log_file.txt" using a ftp client?

      edited: 20110104 12:57 GMT to remove spelling mistake

      I am not sure about the leading backslash problem but I have something to suggest.

      You have a file "api_log_file.txt" containing the names of files to be downloaded. You should use ls() to get the list of files and iterate over this list to download selected files instead of a list (@arr) from a different source.

      --
      Regards
      - Samar