Hi
I can't see from the docs how to move a file using the Python Netapp API.
I would have thought:
resources = FileInfo.get_collection(volume, path)
resource = next(resources)
resource.path = '/new/path'
resource.patch(hydrate=True)
would have worked but sadly no.
What's the correct procedure?