Skip to content

FTP SAVE FILE

Looking for an example project to get you started?
  • Support_Mary Offline
  • Support Specialist
  • Posts: 11
  • Joined: Tue Feb 09, 2010 11:16 am

FTP SAVE FILE

Post by Support_Mary »

This project shows how to FTP a save file to the IFS and then send it to another System i.

Code: Select all

<project name="ftp save file" mainModule="Main" version="1.0">

                <module name="Main">

                                <ftp label="FTP to IFS on Dev53" version="1.0" resourceId="Dev53">
                                                <get sourceFile="/QSYS.LIB/DJOHNSON.LIB/TEMP1.SAVF" destinationFile="/djohnson/temp1.savf" type="binary" />
                                </ftp>


                                <ftp label="Dev53 IFS to Dev55" version="1.0" resourceId="Dev55">
                                                <put sourceFile="/djohnson/temp1.savf" destinationFile="/QSYS.LIB/DJOHNSON.LIB/TEMP.SAVF" type="binary" />
                                </ftp>

                </module>

</project>