How to access the file server from any platform
https://files.edentang.xyz
A login dialog will appear. Enter the credentials you were given.
Upload: Drag and drop files onto the page, or click the upload button.
Download: Click any file name to download it directly.
# Replace USERNAME, PASSWORD, and the paths accordingly
curl -u USERNAME:PASSWORD \
-T /path/to/local-file \
https://files.edentang.xyz/your-folder/filename
curl -u USERNAME:PASSWORD \
-O https://files.edentang.xyz/your-folder/filename
# 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
# 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
# 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
curl -u USERNAME:PASSWORD `
-O https://files.edentang.xyz/your-folder/file.txt
# 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.
# 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