We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have several collections of images which I consolidate with symlinks.
When I execute floyd data upload the symlinks and not the files are uploaded. So an invalid 0kb file instead of the image.
Is there a way to circumvent this?
Kind Regards Graham
The text was updated successfully, but these errors were encountered:
Hi @glancashire,
Yes, by default the TarFile object doesn't follow the symlink but provides only the link file. You can change this by editing this line in this way:
with tarfile.open(self.filename, "w:gz", dereference=True) as tar:
Let me know if this works.
Sorry, something went wrong.
Hi @KingOfThePirates
it seems to work, once I removed any broken symlinks, which cause it to crash/abort.
Kind regards Graham
ReDeiPirati
No branches or pull requests
I have several collections of images which I consolidate with symlinks.
When I execute floyd data upload the symlinks and not the files are uploaded.
So an invalid 0kb file instead of the image.
Is there a way to circumvent this?
Kind Regards
Graham
The text was updated successfully, but these errors were encountered: