Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Re: Looking for Help in automating code

WinSCP cannot ignore folders not existing on the other side.
It can ignore all files and folders not existing on the other side, if that helps.

Otherwise, your only option is to synchronize the known subfolders one-by-one.
You can write a simple script in your favorite language to generate synchronization script for each subfolder.
shadow5631

Looking for Help in automating code

Hello,

I am new to WinSCP and scripting and was looking for some guidance on how to accomplish automating the application. My intent is to have a script that compares the remote and local directories to each other. If the folder exists on the local directory, then have the program check to see if the files in that folder on the remote directory are the same as the local one. If not, download the files from the remote directory to the local one. An Example would be

Remote Dir: /home/DIR1
in that dir would be /home/DIR/FOLDER_A , /home/DIR/FOLDER_B, /home/DIR/FOLDER_C, /home/DIR/FOLDER_D, etc.

Local Dir: D:DIR1
in that dir would be D:DIR/FOLDER_A , D:DIR/FOLDER_B, D:DIR/FOLDER_C, /D:DIR/FOLDER_D, etc.

So if FOLDER_F exists on the remote Dir and not on the local Dir, then it would be ignored.

If FOLDEER_F exists on both the remote Dir and local Dir then the program would check the contents of the remote Dir and if new files exist, it would download to the local Dir.

Please let me know where to start, as Im not sure what launge or scripts to use.