File Share
Temporary File Upload
🔥 Delete after 1 download
Files are automatically deleted after first download
📦 4GB Size Limit
Upload files up to 4 gigabytes
📤
Click to upload or drag files here
Maximum file size: 4GB
Uploading file...
Preparing...
Time Remaining
Calculating...
✅ Upload successful!
⚠️ File will be deleted after first download
📋 Command Line Usage
📥 Download to current directory (PowerShell):
Invoke-WebRequest -Uri "http://sgfile.io/your-file.txt" -OutFile "your-file.txt"
📥 Download to C:\Temp (PowerShell):
Invoke-WebRequest -Uri "http://sgfile.io/your-file.txt" -OutFile "C:\Temp\your-file.txt"
📥 Using curl (if installed):
curl.exe "http://sgfile.io/your-file.txt" -o "your-file.txt"
📥 Download to current directory (wget):
wget http://sgfile.io/your-file.txt
📥 Download to /tmp (wget):
wget http://sgfile.io/your-file.txt -P /tmp
📥 Download to current directory (curl):
curl http://sgfile.io/your-file.txt -o your-file.txt
📥 Download to /tmp (curl):
curl http://sgfile.io/your-file.txt -o /tmp/your-file.txt