Get Started
← Back to Blog

WebDAV & rclone: Mount Your LifetimeCloud Vault Like a Local Drive

Stop dragging files into a browser tab one at a time. Mount your encrypted LifetimeCloud vault as a regular folder on macOS, Windows, and Linux — using WebDAV or rclone. Once it's set up, your cloud just looks like another disk.

Why mounting beats drag-and-drop

The browser upload interface is fine for occasional files. For real work — a Documents folder, a photo library, daily backups — it falls apart. You can't open files directly. You can't use your normal Save dialog. You can't sync a directory automatically.

A mounted drive solves all of that. Save a Word document straight into the cloud. Run rsync against it. Point your camera roll at it. The encryption still happens client-side; only the access pattern changes.

macOS — Finder Connect to Server

This is the fastest path on Mac and requires nothing extra to install.

  1. In Finder, press Cmd + K (or pick Go → Connect to Server).
  2. Enter the WebDAV URL: https://lifetimecloud.me/dav/<your-username>/
  3. Click Connect. Enter your LifetimeCloud username and password.
  4. The vault appears in Finder's sidebar as a network drive.

Tip: drag the mounted drive into your Login Items so it auto-mounts at startup.

Windows — Map Network Drive

Windows ships with WebDAV support, though the UI is well hidden.

  1. Open File Explorer → right-click This PCMap network drive.
  2. Pick a drive letter (Z: works).
  3. Folder: https://lifetimecloud.me/dav/<your-username>/
  4. Check Reconnect at sign-in. Click Finish.
  5. Enter your credentials when prompted.

If Windows complains about the file size limit, raise it once via:

reg add "HKLM\SYSTEM\CurrentControlSet\Services\WebClient\Parameters" /v FileSizeLimitInBytes /t REG_DWORD /d 4294967295 /f
net stop WebClient && net start WebClient

Linux & power users — rclone

rclone is the gold standard for command-line cloud sync. It speaks WebDAV natively, supports FUSE mounts, and runs anywhere.

# Install (Linux / macOS)
curl https://rclone.org/install.sh | sudo bash

# Configure
rclone config
# n) new remote
# name: lifetime
# storage: webdav
# url: https://lifetimecloud.me/dav/<username>/
# vendor: other
# user: <username>
# pass: <password>

Then mount it as a real filesystem:

mkdir -p ~/lifetime
rclone mount lifetime: ~/lifetime \
  --vfs-cache-mode full \
  --vfs-cache-max-size 5G \
  --daemon

Now ~/lifetime behaves like a local folder. cp, mv, find, rsync — all work.

Performance & offline tips

WebDAV over a typical home connection runs at 30-80 MB/s in our tests — fast enough for everyday use but slower than local disk. A few tips:

One cloud, three operating systems, zero subscriptions.

LifetimeCloud ships native WebDAV out of the box. Mount once on Mac, Windows, or Linux — and treat your encrypted vault like local disk.

Get a lifetime vault →