Folder and file synchronizer.
HyperSync Update folders with only newer files. Easily maintain duplicate or migrated data.
- Support for Windows and Linux
- Easily specify files and folders as source/destination
- Retain setting in an XML file to reuse later
- Three level of logs
- Exclude files or folders
- Specifiy Damaged source to skip failed/damaged files
To install Hypersync, copy the binary to you Windows path or bin folder.
Place the binary in any folder you desire to access it from such as a path located in your %path% folder.
Plase the binary in any folder you desire to access it from such as /usr/local/bin.
Execute the command "Hypersync v" to verify it is installed. If present it will output the installed version.
To build the application from source code, install Visual Studio (Windows) or MonoDevelop (Linux).
- Git
- Visual Studio or MonoDevelop
- .NET 4.8 (Visual Studio)
Prepare MonoDevelop
- Download your desired target (e.g. mono-6.8.0-ubuntu-16.04-x64)
mkbundle --fetch-target mono-6.8.0-ubuntu-16.04-x64
- Locate the machine.config file (e.g. ~/.mono/targets/mono-6.8.0-ubuntu-16.04-x64/etc/mono/4.5/machine.config)
- Modify the machine.config file remove the references to "$mono_libdir/" in front of all libmono-native.so
- Locate libmono-native.so (e.g. /usr/lib/libmono-native.so) because you will need the path for mkbundle.
cd ~/mono
git clone https://github.com/Akutra/hypersync-console.git
cd hypersync-console/hypersync
msbuild hypersync.csproj -p:Platform=x64,Configuration=Release
mkbundle -o hypersync --cross mono-6.8.0-ubuntu-16.04-x64 bin/Win/x64/Release/Hypersync.exe --machine-config /etc/mono/4.5/machine.config --library /usr/lib/libmono-native.so
You can now run the built app.
./hypersync v
Locate your repos directory (e.g. C:\Users<user>\source\repos)
cd C:\Users\<user>\source\repos
git clone https://github.com/Akutra/hypersync-console.git
Open the csproj file in Visual Studio from the repo (e.g. C:\Users<user>\source\repos\hypersync-console\hypersync\hypersync.csproj Compile for x64 Release. Place the resulting exe file in a folder referenced by the %path% variable
You can now run the built app.
hypersync v
To Be Determined.