Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 810 Bytes

File metadata and controls

30 lines (24 loc) · 810 Bytes

Filedropper

Simple and secure file hosting web service in Go.

Install with:

go install github.com/fullfox/filedropper@latest

Upload via commands

curl:

curl -T myfile.txt "https://filedropper.eu/upload/myfile.txt"
curl -T myfile.txt "https://filedropper.eu/upload/myfile.txt?expiration=168h&public=yes"

PowerShell:

iwr -Uri "https://filedropper.eu/upload/myfile.txt" -UseBasicParsing -Method Put -InFile myfile.txt
iwr -Uri "https://filedropper.eu/upload/myfile.txt?expiration=168h&public=yes" -UseBasicParsing -Method Put -InFile myfile.txt

URL Parameters:

  • expiration - Duration in hours (e.g., 1h, 24h, 168h). Default: 168h (7 days)
  • public - Set to yes to list file publicly. Default: not public