Issue when extracting an archive to a folder that already exists
Closed this issue · 3 comments
FerryJansen commented
When execution a Create action and the contents of the archive already exists, the process does nothing. I suspect it is awaiting a confimatrion to overwrite or not. This is the case when i manually execute it.
I propose to update the code from and to this:
Currentcode
$shell.Namespace($destination).copyhere($item)
New code
$shell.Namespace($destination).copyhere($item,16)
This will anwser "Yes" to any prompt.
Do you think this is a good fix?
FerryJansen commented
I think i just did. First time so wasn't too sure I was doing it right.