Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xciells/foldersync
Program that synchronizes two folders: source and replica, and maintains a full, identical copy of source folder at replica folder.
https://github.com/xciells/foldersync
Last synced: 12 days ago
JSON representation
Program that synchronizes two folders: source and replica, and maintains a full, identical copy of source folder at replica folder.
- Host: GitHub
- URL: https://github.com/xciells/foldersync
- Owner: xciells
- Created: 2024-08-26T11:13:07.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-27T12:33:51.000Z (5 months ago)
- Last Synced: 2024-11-13T08:37:14.516Z (2 months ago)
- Language: C#
- Size: 90.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FolderSync
FolderSync is a utility that keeps a replica folder synchronized with a source folder, ensuring the replica is always an exact copy of the source.
## Features
- **One-Way Sync**: The replica folder is always updated to match the source, overwriting any changes made in the replica.
- **Real-Time Interval Adjustment**: Change the sync interval on the fly, with changes applied immediately.
- **Automatic Folder Creation**: Creates `SourceFolder` and `ReplicaFolder` if they don't exist.
- **Logging**: Records all sync activities in `log.txt`.## Getting Started
### Prerequisites
- [.NET Core SDK](https://dotnet.microsoft.com/download) (if building from source)
### Installation
You can either download the latest release or build the project from source.
#### Option 1: Download the Latest Release
1. Go to the [Releases](https://github.com/xciells/FolderSync/releases) section of this repository.
2. Download the latest release ZIP file (`FolderSync_v1.0.zip`).
3. Extract the ZIP file to your desired location.
4. Run the executable inside the extracted folder to start the application.#### Option 2: Build from Source
1. **Clone the repository**:
```bash
git clone https://github.com/xciells/FolderSync.git
cd FolderSync/FolderSync/src
2. **Build and run the project**:
```bash
dotnet build --configuration Release
dotnet run
3. **Run the project**:
Navigate to the bin/Release/ directory where the FolderSync.exe is located.
Run FolderSync.exe to start the application.