You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A new feature which allows users to export files from a gocryptfs volume directly to disk. The end goal is to make it possible to access the files without FUSE mounting the volume. The feature could work as follows:
gocryptfs -export /volume /destination
After running the command and inputting the password, /destination would contain a copy of all the files decrypted from /volume, i.e. an export of all the files within /volume. As a future improvement, the -exclude flag (from -reverse) could also be implemented to limit which paths get exported.
Why
It is useful for situations where FUSE mounting capabilities are not available, such as in non-rooted Android devices.
The text was updated successfully, but these errors were encountered:
Hi @rfjakob, thank you for making me aware of that project. Still, while useful, exporting single files is not good enough for the use cases I had in mind.
Description
A new feature which allows users to export files from a gocryptfs volume directly to disk. The end goal is to make it possible to access the files without FUSE mounting the volume. The feature could work as follows:
gocryptfs -export /volume /destination
After running the command and inputting the password,
/destination
would contain a copy of all the files decrypted from/volume
, i.e. an export of all the files within/volume
. As a future improvement, the-exclude
flag (from-reverse
) could also be implemented to limit which paths get exported.Why
It is useful for situations where FUSE mounting capabilities are not available, such as in non-rooted Android devices.
The text was updated successfully, but these errors were encountered: