Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have created an extraction file, before I extract any data from the source I am using the Execute cmd to create a Folder Structure.
Does anyone have the command line to add a blank qvw file to one of these folders?
Thanks
Alan
EXECUTE cmd.exe /C "copy "E:\HQ\empty.qvw" "D:\QVData\somewhere\new.qvw"
Create a document like that somewhere central once manually, then copy that empty document in the same batch file where you create the folder structure (or use another execute cmd for the copying).
do you have an example EXECUTE cmd for the copying
EXECUTE cmd.exe /C "copy "E:\HQ\empty.qvw" "D:\QVData\somewhere\new.qvw"
Excellent that worked, but I had to remove " before copy
EXECUTE cmd.exe /C copy "E:\HQ\empty.qvw" "D:\QVData\somewhere\new.qvw"
thanks again