-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
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
Implement a copy function for collections #496
Comments
recursive calls are currently client-driven... implementing server-side recursion might depend on something like... irods/irods#7213 |
Currently, other languages have to handle this logic themselves... which is... not what we want for the long term. Hence a server-side solution would be nice/good. |
Whether or not it was ever meant to be used, we have had this thing sitting around for quite a long time... https://github.com/irods/irods/blob/aff93a3fbe417c8ec2e9d834b5eb2d6b2ae31083/plugins/experimental/src/copy.cpp#L40 |
but... is that available for use by a call from Python? |
It's an API plugin, so... yes? |
Well, right, that's so smart. |
Hmm... an "experimental" plugin. Maybe not. |
Easily done in pure python too. Even easier if we use pyfilesystem2's fs.walk() |
It would be cool if collections could be copied the same way as it is currently possible for data objects using a single function call to the respective manager.
The text was updated successfully, but these errors were encountered: