python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How can I download all txt files that has been created in the last 60 seconds from my SFTP Server?
static void Main(string[] args)
{
var fileSystemWatcher = new FileSystemWatcher(@"filepath")
{
Filter = "*.txt",
NotifyFilter = NotifyFilters.FileName,
...

Astirak
Votes: 0
Answers: 1
How to update the month automatically for a directory within a batch script
I need to be able to update the month via windows in my batch script so that the target directory is always the current month (In numerical format, e.g 01). This saves me having to manually update it ...
Msj321
Votes: 0
Answers: 0
Status Code 3 at the end of WinSCP SFTP upload
I have a Java server technology (Ignition by Inductive Automation specifically) that calls a batch file that is meant to use WinSCP to transfer some text files overnight to our customer. It is not wo...

Brian Karabinchak
Votes: 0
Answers: 1
Downloading today's file from FTP server using WinSCP from batch file fails with "Mask is invalid near '=today'"
I have a batch file that receives an argument then passes that argument to a text scrip file that invokes WinSCP to download a file.
My goal is to download today's file.
I am able to download the file...
mjRola
Votes: 0
Answers: 2