Try opening the file with a dedicated extractor like 7-Zip or The Unarchiver .
If you are writing a script to handle this file, you can use the built-in zipfile library to add "features" (files/data) to the archive: BadCompZero_2022-08.zip
import zipfile # Create or append to the specific zip file with zipfile.ZipFile('BadCompZero_2022-08.zip', 'a') as myzip: # 'write' adds an existing file into the zip myzip.write('my_feature_data.csv') Use code with caution. Copied to clipboard 3. Troubleshooting "Unsupported Feature" Errors Try opening the file with a dedicated extractor
If you are using the FeatureWriter , ensure the output dataset parameter ends with .zip . This tells FME to compress the output features into that archive automatically. Using FME (Safe Software) When setting up your
If you are looking to "write a feature" from or into this specific zip file using common tools like FME or Python, here is how you can do it: 1. Using FME (Safe Software)
When setting up your Writer , simply add .zip to the end of the filename (e.g., C:\Data\BadCompZero_2022-08.zip ).
Was this helpful?