Syncs FTP folders into IPFS's mutable file system (the directory structure accessible through ipfs files …
).
You need to create a configuration file that specifies what to sync, e.g. minimally: ```yaml
source: ftp://ftp.jaist.jp/pub/Linux/ArchLinux/core/os/x86_64/
target: /some-archlinux-core-mirror ```
Save the file as ftp2mfs-cfg1
and run ftp2mfs --config ftp2mfs-cfg1
(or cargo run --
if you did not cargo install
this).
FTP2MFS will first materialize the files in some folder in /temp
, and make a copy at $target
once it successfully completes the sync.
If the operation fails, restarting with the same configuration file should continue the operations.
Note that source folder structures are fully explored before any copying/downloading is done, so it may take a while for any files to be copied.
```yaml
source: ftp://… /// Reprieve period for which files will be kept in MFS after deletion on server reprieve: "1 month", /// Ignore glob patterns when listing files on server (gitignore style) ignore: # Example: Whitelist only folders a and b - "/*" - "!a" - "!b"
user: anonymous pass: example@example.example # Many FTP servers ask you to provide your e-mail address as password
target: /publish-me
workdir: /temp/foobar ```