โ† Back to home

Usage Guide

How to access the file server from any platform

Browser
๐ŸŒ

Web Interface

Any device
1 Open the file server
https://files.edentang.xyz
2 Log in

A login dialog will appear. Enter the credentials you were given.

3 Upload & download

Upload: Drag and drop files onto the page, or click the upload button.
Download: Click any file name to download it directly.

Terminal
๐ŸŽ

macOS & Linux

curl ยท rclone ยท mount
1 Upload a file with curl
# Replace USERNAME, PASSWORD, and the paths accordingly
curl -u USERNAME:PASSWORD \
     -T /path/to/local-file \
     https://files.edentang.xyz/your-folder/filename
2 Download a file with curl
curl -u USERNAME:PASSWORD \
     -O https://files.edentang.xyz/your-folder/filename
3 Mount as a network drive (WebDAV)
# macOS โ€” via Finder
# Go โ†’ Connect to Server (โŒ˜K) โ†’ enter the URL below
https://files.edentang.xyz

# Linux โ€” via davfs2
sudo apt install davfs2
sudo mkdir -p /mnt/files
sudo mount -t davfs https://files.edentang.xyz /mnt/files
# Enter your username and password when prompted
4 Sync folders with rclone
# Install rclone: https://rclone.org/install/
# Configure once:
rclone config
# โ†’ New remote โ†’ type: WebDAV
# โ†’ URL: https://files.edentang.xyz โ†’ vendor: Other
# โ†’ Enter your username and password

# Upload a folder
rclone copy ./local-folder remote:your-folder/

# Download a folder
rclone copy remote:your-folder/ ./local-folder
๐ŸชŸ

Windows

PowerShell ยท File Explorer ยท rclone
1 Upload a file with PowerShell
# curl is built-in on Windows 10/11
curl -u USERNAME:PASSWORD `
     -T C:\path\to\file.txt `
     https://files.edentang.xyz/your-folder/file.txt
2 Download a file with PowerShell
curl -u USERNAME:PASSWORD `
     -O https://files.edentang.xyz/your-folder/file.txt
3 Mount as a network drive in File Explorer
# Option A โ€” GUI
1. File Explorer โ†’ right-click "This PC" โ†’ Map Network Drive
2. Folder: https://files.edentang.xyz
3. Check "Connect using different credentials"
4. Enter your username and password โ†’ Finish

# Option B โ€” Command line (run as Administrator)
net use Z: https://files.edentang.xyz /user:USERNAME PASSWORD

โš  If the drive fails to connect, open regedit and set
HKLM\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\BasicAuthLevel to 2, then restart the WebClient service.

4 Sync folders with rclone
# Download rclone .exe from https://rclone.org/install/
# Configure once in PowerShell:
rclone config
# โ†’ New remote โ†’ type: WebDAV
# โ†’ URL: https://files.edentang.xyz โ†’ vendor: Other
# โ†’ Enter your username and password

# Upload a folder
rclone copy C:\local-folder remote:your-folder\

# Download a folder
rclone copy remote:your-folder\ C:\local-folder