Skip to content

Sync Nintendo Switch local folders with WebDAV

License

Notifications You must be signed in to change notification settings

sriio/NXDavSync

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NXDavSync: Sync local folders with WebDAV

Nintendo Switch port of 3DavSync.

NXDavSync allows you to sync folders on the NSW SD card to a remote WebDAV server.

Build

docker pull devkitpro/devkita64:latest
docker run --rm -v "$PWD":/app -w /app devkitpro/devkita64:latest make TARGET=NXDavSync -j

Configuration

NXDavSync accepts an ini-formatted config file at /switch/NXDavSync.ini. This file should look like this:

[General]
# List webdav configs that will be synced
Enabled=saves roms

# Example: Sync Checkpoint save folder with Nextcloud/ownCloud
[saves]
Url=https://example.org/remote.php/dav/files/username/saves
LocalPath=/switch/Checkpoint/saves
# Specify credential here
Username=REDACTED
Password=REDACTED

# Example: Sync roms
[roms]
Url=https://example.org/whatever/webdav
LocalPath=/roms
Username=REDACTED
Password=REDACTED