Move files from SFTP

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • singhj
    New User
    • Jan 2015
    • 1

    Move files from SFTP

    I am trying to move documents from sftp to a local folder on my pc.
    the script i am using runs fine without showing any errors on the log.txt, but it does not actually move the files from sftp to my local folder.

    log verbose "E:\BC_Log.txt"
    load "iPlexus"
    option confirm:yes-to-all
    Expand all
    Select right
    filter "*.\Upload*"
    move right->left


    Any ideas?
  • Aaron
    Team Scooter
    • Oct 2007
    • 16002

    #2
    Hello,

    I would recommend saving the filter as part of the "iPlexus". If you copy and paste your filter into the filter toolbar (without "quotes"), does it show the items you expect? I would suspect it may not be configured correctly. Which folders are you trying to show?
    .\Upload for the base level Upload?
    .\...\Upload\ for Upload at other levels?

    Your script can then be reorganized as:
    log verbose "E:\BC_Log.txt"
    option confirm:yes-to-all
    load "iPlexus"
    Expand all
    Select right
    move right->left


    Please note that script will not preview before committing an action (move), and we do not support an Undo action. You should test with already backed up test folders while learning how script will interact with your files.
    Aaron P Scooter Software

    Comment

    Working...