Robocopy only .csv
-
I am trying to copy the .csv file from the source folder to destination where copy is not happening..
robocopy "Source Path" "Destination Path" "*.csv"
2018/01/02 08:52:29 ERROR 3 (0x00000003)
Help -
#local disk to local disk robocopy "C:\folder1\*.csv" "E:\folder1" robocopy "C:\folder1" "E:\folder1" "*.csv" #local disk to network share robocopy "C:\folders1\*.csv" "\\server\share" robocopy "C:\folders1" "\\server\share" "*.csv"
-
I am getting invalid
ERROR : Invalid Parameter #1 : -
Any other commands to move that .csv from Powershell ?
Through Get-ChildItem ?
-
@lakshmana said in Robocopy only .csv:
I am getting invalid
ERROR : Invalid Parameter #1 :Which command gave you an invalid parameter?
-
Correct syntax is:
robocopy *.csv c:\folder1 c:\folder2
-
@mike-davis Ok Thanks I will try the same
@mike-davis said in Robocopy only .csv:
Correct syntax is:
robocopy *.csv c:\folder1 c:\folder2
ERROR : No Destination Directory Specified.
-
@black3dynamite said in Robocopy only .csv:
@lakshmana said in Robocopy only .csv:
I am getting invalid
ERROR : Invalid Parameter #1 :Which command gave you an invalid parameter?
Local to Local Copy
-
Are you taking the time to learn these scripts or are you just copying and pasting?
-
@irj said in Robocopy only .csv:
Are you taking the time to learn these scripts or are you just copying and pasting?
Making copy paste the files by wildcard.This is the aim
-
@lakshmana Just paste your exact commands and the exact error.