Question : Powershell insert sleep command into Powershell foreach script.

Please refer to the following code.  In the first line of code, I want to insert a start-sleep command between the get-ftp statement and the foreach-object -process statement.  The idea is to obtain a list of files, but delay the processing for 180 seconds.

How is this completed?
Code Snippet:
1:
2:
3:
get-ftp -server myserver -user myuser -password mypassword -ssh -force -path /path/to/data/*.csv | foreach-object -process {
get-ftp -server myserver -user myuser -password mypassword -ssh -force -path "/path/to/data/" -remotefile ($_.Filename) -localfile ("C:\path\to\data\" + $_.Filename) 
send-ftp -server myserver -user myuser -password mypassword -ssh -force -path "/path/to/data/" -remotefile ($_.Filename) -rename ("/path/to/data/" + $_.Filename)
Open in New Window Select All

Answer : Powershell insert sleep command into Powershell foreach script.

oh... try this

get-ftp -server myserver -user myuser -password mypassword -ssh -force -path /path/to/data/*.csv | foreach-object -begin {start-sleep 180} -process {

Random Solutions  
 
programming4us programming4us