Decompress Individual ZIP Files

I have a single input folder with 2 x zip files. I need to decompress the files individually into 2 x separate folders. I can run the decompress action in debug mode and it works perfectly for a single file, but as soon as I try to automate it (folder capture) for both files, it fails:

11:45:49.974 Folder Capture: W1603 : Plugin failed - 11:45:49 (elapsed time: 00:00:00:018)
11:45:49.974 W3010 : Error creating directory

Files look like this (there is no internal folder structure, I have no control over this):
20181001_R01.zip
20181001_R02.zip

  1. How can I automate it (it works fine in debug mode
  2. How do I extract both files to individual folders (ie. 20181001_R01 and 20181001_R02 folders)

Any help is greatly appreciated.

I’m not sure about the error since you did not show your output folder string, but if you want to output to variable folder names then simply use %O at the end of your Output Folder location. e.g. C:\out\%O. Leave the file mask in the decompress files plugin to . unless you want to only unzip certain file types from the zip file.

%O is original filename without extension. You can also use local variables too if you want to name them using other names instead of the input zip file names.

Regards,
S

This error (W3010) happens when you do not have proper rights read/write access to a folder location.

When you run in Debug, you have the credentials of the user you are currently logged under. When you run it Live, you have the credentials of the user that Workflow service are setup to use, as a service.

Even though both can be the same, as far as Windows is concerned, they do not have the same credentials because one is a desktop user and the other a service.

Hope that clarify things.