JasonFerrara / jmtpfs

GNU General Public License v3.0
164 stars 19 forks source link

diff between fuse-zip and jmtpfs ? #36

Open anmac1789 opened 3 months ago

anmac1789 commented 3 months ago

Hello, is this project still being maintained ? Also, is there a difference in timestamp reliablity and preservation between this program and fuse-zip ? I want to use read-write between linux and android to make complete backups ...

So far, I used :

find . -mindepth 1 -maxdepth 1 | zip -@ -0 -r -v "/home/username/jmtpfs/folder.zip" to make my android backup but I would like to know if there is any difference between that above command and:

find . -mindepth 1 -maxdepth 1 -exec cp -p -i -r -v "{}" "destination" \; ? in regards to jmtpfs vs. fuse-zip ?