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 ?
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 ?