Thanks for the confirmation. Glad that your issue is resolved.
The specified blob does not exist
If the ZIP is flat (no folder structure), the extraction logic sometimes miscalculates the destination path and tries to write a blob to a non-existent folder path, or the connector expects a folder prefix that doesn’t exist. Hence the misleading “BlobNotFound” (404) error.
Even if Windows can open the ZIP, Logic Apps built-in connectors are stricter. Usually, the issues are compression type, central directory quirks, encoding, or metadata entries. Repackaging or using a more robust extractor (Azure Function) fixes it reliably.
Solution:
Those zip files use non-standard compression or metadata formats that Azure’s extractor doesn’t support e.g., ZIP64, Deflate64, AES-encrypted zips, bad encoding, or missing folder paths.
Re-compress the ZIP by using a standard tool (Deflate) like 7-Zip, WinRAR before sending to Logic App.
Hope it helps!
Please do not forget to click "Accept the answer” and Yes, this can be beneficial to other community members.
If you have any other questions, let me know in the "comments" and I would be happy to help you.