SetOutPath -> Delete files
Hi,
It's a little bit difficult to explain :/ But I'am gonna try :
I have a directory :
C:\myDir which contains 3 files : (File1,File2,File3).
I do this :
SetOverwrite ifdiff
SetOutPath "C:\myDir2"
File /r "C:\myDir"
Everything work fine!
But, if I update my directory C:\myDir (File1,File3,File4) (for example for an update of my software). If i do this :
SetOverwrite ifdiff
SetOutPath "C:\myDir2"
File /r "C:\myDir"
I'm gonna have in C:\myDir2 (File1,File2,File3 and File4).
Question : How automatically delete files which are not use (File2) ?
I have only 4 files in this examples but in real case i've got more than 10000.
Thanks a lot,