Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all,
is there a command to delete a directory using qlikview script?
for ex: after the report runs --at the end the script we should delete that directory
take a look to "Execute"
Execute is working good for files..folders I tried below... not working
EXECUTE cmd /C rmdir/s C:\Documents\*.* ;
hi all,
any suggestion here?
try this :
EXECUTE cmd /C "rmdir/s C:\Documents\"
| /Q | Quiet mode, do not ask if ok to remove a directory tree with /S. |
Hi, benny1409.
Make the following steps below:
After test successfull, transfer for your app *.qvw.
Anyway, the file was attached.
Hope this helps!
hi ioannis /Jonas
delete works good
Is their a similar way to move from one folder to another 12122013.xls where all xls files are there within this folder. so the whole folder needs to be moved
for ex: I want to move a folder called
C:/23092015 folder To D:/
so everyday a new folder comes I need to move to 😧 as back up
for ex 23092015
24092015
25092015
Hi, benny1409.
Utilize the same principle. Make one bat file with statement for move xls. Ex.:
cd\
c:\
cd TESTCOMMUNITY
move *.xls c:\<directory desired>
Not forget of execute in Qlikview, before command EXECUTE delete.
hi Jonas,
how can I give a UNC path in the directory for ex: \\servername\..... etc