File Unpacker
Pricing
Pay per usage
Go to Apify Store

File Unpacker
Download, extract, and instantly access ZIP archive contents automatically.
Pricing
Pay per usage
Rating
0.0
(0)
Developer

Amzar Mohamad
Maintained by Community
Actor stats
0
Bookmarked
1
Total users
1
Monthly active users
11 hours ago
Last modified
Categories
Share
File Unpacker
Downloads and extracts archive files from URLs. Supports multiple archive formats and outputs the list of extracted files to a dataset.
Features
- Multiple formats: ZIP, TAR, TAR.GZ, TAR.BZ2, and 7Z
- Simple input: Just provide a URL to the archive file
- Dataset output: Returns a list of all extracted files
How it works
- Provide a URL to an archive file
- The Actor downloads and extracts the file
- Results are saved to a dataset with file paths and metadata
Input
- file_url (required): URL of the archive file to download
- folder_path (optional): Output directory (default:
./storage/extracted) - max_file_size_mb (optional): Maximum file size in MB (default: 50)
- file_name_prefix (optional): Prefix for extracted file names
Output
The Actor outputs a dataset with one record per extracted file containing:
file_url: The source archive URLoutput_path: Where files were extractedextracted_file: Path to the individual extracted filemax_file_size_mb: Maximum file size setting usedfile_name_prefix: File name prefix (if provided)
Example Input
{"file_url": "https://example.com/archive.zip","folder_path": "./storage/extracted","max_file_size_mb": 50}
Example Output
{"file_url": "https://example.com/archive.zip","output_path": "storage/extracted","extracted_file": "storage/extracted/myfile.txt","max_file_size_mb": 50,"file_name_prefix": null}