Unzip Files using invoke method

I’m opening your workflow and I get this warning 'ZipFile' does not have a public static method named 'ExtractToDirectory' matching the parameter types, generic type arguments, and generic type constraints supplied to InvokeMethod.

Basically you’re trying to call ZipFile.ExtracttoDirectory() instead of ZipFile.ExtractToDirectory(zipFile, extractPath)

After setting the parameters (zipPath, extractPath) for the ExtractToDirectory method it will work.

Aren’t you getting the same?

11 Likes