|
Answer» Hi, I have to create a batch FILE that does several things:
run an visual studio 2005 application (.sln) the application itself takes 3 parameter
i. the folder where the input files are (C:\Development\DSGI\X3) ii. the extension of the input files (csv) iii. the extension for the output files (txt)
After RUNNING the app, the batch file has to copy all the output files to C:\Development\DSGI\X3\Out This folder is already there. and deleting the output files from C:\Development\DSGI\X3
I havnt got clue how to do this...any IDEAS....thanks in advancewhat have you done so FAR?You should first ENSURE that there are no TXT files that you want to remain in the source directory. Then run the application. Then simply do
move C:\Development\DSGI\X3\*.txt C:\Development\DSGI\X3\Out\
Mac well I havnt got a clue, but this is what I've come up with:
start X3.sln %C:\Development\DSGI\X3 %csv %txt move C:\Development\DSGI\X3\*.txt C:\Development\DSGI\X3\Out\ Delete C:\Development\DSG1\X3\*.txt
would this work? please advive any modifications
|