I am building a piece of code to read a resource representation of a folder in the VM guest OS.
My code work well when I query any file system path like C:/Users or C:/ProgramData and so on.
When I query to get the content of recycle bin (C:/$Recycle.Bin) the server return the following message:
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<Error StatusCode="501"
Message="File entity view is not supported."
xmlns="http://www.veeam.com/ent/v1.0"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
I make the following HTTP GET:
1) /catalog/vms/{vmname}/vmRestorePoints /{ID}/guestfs/C:/$Recycle.Bin?action=listAll
2) /catalog/vms/{vmname}/vmRestorePoints /{ID}/guestfs/C:/$Recycle.Bin?action=listFiles&pageSize=10&page=1
Suggestions on how to go about resolving this?
Thak you.
Mardock.