Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Running Batch file

I have written a batch file to copy some files from different folders and place it in a common folder. But only files is copying and other are not copying. Can anyone suggest.

copy D:\Publisher\Sleep Aid\DEMON00001_IAI_All_V0.qvw D:\Publisher\DEMON00001\DEMON00001_IAI_All_Sleep_Aid_V0.qvw

copy D:\Publisher\GI Insights\DEMON00001_IAI_All_V0.qvw D:\Publisher\DEMON00001\DEMON00001_IAI_All_GI_Insights_V0.qvw

copy D:\Publisher\IP Demo Oncology\DEMON00001_Insight_Prescriber_Oncology_All_V0.qvw D:\Publisher\DEMON00001\DEMON00001_Insight_Prescriber_Oncology_All_V0.qvw

copy D:\Publisher\Antihistamine\DEMON00001_IAI_All_V0.qvw D:\Publisher\DEMON00001\DEMON00001_IAI_All_Antihistamine_V0.qvw

this is the code used

1 Solution

Accepted Solutions
rajni_batra
Specialist
Specialist

copy "D:\Publisher\Sleep Aid\DEMON00001_IAI_All_V0.qvw" "D:\Publisher\DEMON00001\DEMON00001_IAI_All_Sleep_Aid_V0.qvw"

View solution in original post

2 Replies
rajni_batra
Specialist
Specialist

copy "D:\Publisher\Sleep Aid\DEMON00001_IAI_All_V0.qvw" "D:\Publisher\DEMON00001\DEMON00001_IAI_All_Sleep_Aid_V0.qvw"

Not applicable
Author

Thank you its working