Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
rustyfishbones
Master II
Master II

EXE to create a blank Qlikview Document

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

1 Solution

Accepted Solutions
Gysbert_Wassenaar

EXECUTE cmd.exe /C "copy "E:\HQ\empty.qvw" "D:\QVData\somewhere\new.qvw"


talk is cheap, supply exceeds demand

View solution in original post

4 Replies
Gysbert_Wassenaar

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).


talk is cheap, supply exceeds demand
rustyfishbones
Master II
Master II
Author

do you have an example EXECUTE cmd for the copying

Gysbert_Wassenaar

EXECUTE cmd.exe /C "copy "E:\HQ\empty.qvw" "D:\QVData\somewhere\new.qvw"


talk is cheap, supply exceeds demand
rustyfishbones
Master II
Master II
Author

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