In the classic sense, cloud storage works on a file-to-cloud basis. They represent a separate system where your files are stored.
Fcloud offers a new approach. Fcloud integrates into the system and becomes one with your file system. When working with files, the file structure and file names are preserved. Download the ready installers here: https://github.com/theakopov/fcloud/releases. Download the project using pipx:
pipx install https://github.com/theakopov/fcloud/archive/refs/heads/main.zip
A simple example of uploading and downloading a cloud file:First, it must be installed on your system - install pipx
$ ls
> film.mp4 # 2 gb
$ fcloud add film.mp4 --near
$ ls
> film.mp4 # 2 gb
film.mp4.cfl # 10 bytes
$ fcloud info film.mp4.cfl
> Path: /films/film.mp4
Modified: 2024-02-28 12:10:30
Size: 2147483648B
Content_hash: 27a4179db8648f2a0358844a34c7e0a42d8fb3fbdce006b1002c7401fee581b0
$ rm film.mp4
$ ls
> film.mp4.cfl # 10 bytes
$ fcloud get film.mp4.cfl
$ ls
> film.mp4 # 2 gb
Read more here: https://fcloud.tech/docs/usage/base/
GNU General Public License version 2 (more)