What is the File Transfer Tool?
The IPerfect.Net File Transfer tool lets you upload a file from one device and download it on any other device — from anywhere in the world. There is no app to install, no account to create, and it works on any browser. It is ideal for quickly moving photos, documents, or code files between your phone, laptop, and desktop.
Files are temporarily stored on the server and can be retrieved immediately. The tool also supports uploading files directly from a URL or from the Linux/macOS terminal using curl.
Open File Transfer
How to Transfer a File
From the Browser
1
Open the tool — Go to
IPerfect.Net and click the
File Transfer tab.
2
Upload a file — Drag and drop your file onto the upload area, or click to browse and select it. The file uploads immediately.
3
Download on another device — Open the same tool on your other device. Your file appears in the received files list. Click to download.
From the Terminal (Linux / macOS)
You can upload files directly from the command line — useful for transferring files from a server without a GUI:
# Upload a file
curl -i -X POST -H "Content-Type: multipart/form-data" \
-F "file=@/path/to/yourfile.txt" \
https://iperfect.net/backend/upload.php
# Upload a file from a URL
curl "https://iperfect.net/ajax/uploadFileFromURL.php?url=https://example.com/file.pdf"
# List recently uploaded files
curl https://iperfect.net/cli/getLastFiles.php
Use Cases
- Phone to laptop — Take a photo on your phone and instantly access it on your laptop without a USB cable or cloud account.
- Server to desktop — Download a log file or build artifact from a Linux server directly to your laptop using curl.
- Quick sharing — Share a file with a colleague without emailing or uploading to a cloud drive.
- Cross-OS transfers — Move files between Windows, macOS, Linux, Android, and iOS without compatibility issues.
- IoT & embedded dev — Transfer firmware or config files from a development machine to a remote device on the same network.
Privacy & Storage
Uploaded files are stored temporarily on the server. Files are not encrypted and should not contain sensitive or confidential data. Do not upload passwords, private keys, financial records, or personal documents. Files may be cleared periodically. For full details, see the Privacy Policy.
Features
- No login or registration required
- Drag-and-drop upload interface
- Upload from URL — point to a remote file and we download it for you
- Terminal/CLI access via
curl
- View list of recently uploaded files
- Works on all modern browsers and mobile devices
Other Tools on IPerfect.Net