Post a reply

Before posting, please read how to report bug or request support effectively.

Bug reports without an attached log file are usually useless.

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

interiis

I found the culprit insofar that I was attempting to delete the file after download, while the server is set to do so automatically.
Switching the third argument to $False lets the script run without error and still removes the file after download.

/HLM
interiis

powershell $session.GetFiles

Hello WinSCP forums

I'm having a bit of a strange problem that I hope you guys can help me with.
I've produced a powershell script, which contacts an ftp server, deletes files based on one mask before downloading based on another.
The connection is made and my script deletes successfully, but when it comes to downloading I get "No such file or directory."

The relevant line reads
$downloadResult = $session.GetFiles(($remotePath + "ftpPINVOI*.*"), $localPath, $True, $transferOptions)
The filenames have a structure of ftpPINVOI_[timestamp]_[number].txt
Timestamp and number are just digits, nothing more.

winscp v577
WinServer 2008 R2

/HLM