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: Disable deleting files from server when using example.js

This script should not delete any file. If it does, please post a log file.
PeteTheBeagle

Disable deleting files from server when using example.js

I'm using the example.js script from your web site by running cscript /nologo example.js and it works great. The only changes I made to the script are my session name and the folder names. It determines the latest file and downloads it successfully but I want it to leave the original file on the server.

How do I stop it from deleting any files from my SFTP server??

I looked at the script and its doing a regular get without any -delete options:

exec.StdIn.Write(
"option batch abort\n" +
"option confirm off\n" +
"open \"" + SESSION + "\"\n" +
"get \"" + REMOTEPATH + filenameLatest + "\" \"" + LOCALPATH + "\"\n" +
"exit\n");

I'm using INI storage if that makes a difference, with all default settings in the user interface. What am I missing?