What you will read?
On Windows, the default folder used by Syncthing to store shared or synchronized files is usually:
C:\Users\<YourUsername>\Sync
So, for example, if your Windows username is Ali
, the default folder would be:
C:\Users\Ali\Sync
This folder is created automatically when Syncthing is first set up, unless you specify a different path during folder creation in the Syncthing UI.
If you want to confirm or change it:
-
Open the Syncthing web UI (usually at
http://localhost:8384
). -
Check the “Folder Path” listed under each shared folder.
-
You can click Edit on any folder to change the path.
Change the Default Folder Path in Syncthing (Windows)
-
Open Syncthing Web UI:
Go tohttp://localhost:8384
in your browser. -
Locate your shared folder (usually named
Default Folder
or similar). -
Click the Edit (🖉) icon next to it.
-
In the Folder Path field, replace:
C:\Users\<YourUsername>\Sync
with your desired path, e.g.:
D:\MySyncthingData
-
Click Save.
-
Syncthing may ask to re-scan or confirm the move — proceed accordingly.
Run Syncthing as a Windows Service
This allows Syncthing to start at boot, even before login.
Step 1: Install NSSM (Non-Sucking Service Manager)
NSSM is a tool to install any app as a Windows service.
-
Download from: https://nssm.cc/download
-
Extract it somewhere, e.g.,
C:\nssm
Step 2: Set Up Syncthing as a Service
-
Open Command Prompt as Administrator.
-
Run:
C:\nssm\nssm.exe install Syncthing
-
In the window that appears:
-
Path: Browse to
syncthing.exe
(usually inC:\Users\<YourUsername>\AppData\Local\Programs\Syncthing\syncthing.exe
) -
Startup directory: Set to the same folder as above
-
Arguments: leave blank
-
-
Click Install service.
-
Now start the service:
net start Syncthing
Syncthing will now run in the background after every reboot, without needing a user to log in.