I am developing an app that use an owncloud OCS API.
I used the Owncloud REST API for manage users and now I want to manage the files of each user. I am using nodejs. Is an API for manage files like manage users one?
What I found was the API URL for shared files:
owncloud/ocs/v1.php/apps/files_sharing/api/v1/shares
This returns only the shared files. I want one for the all the files
Thanks.
Using CURL command we use:
curl -X MKCOL <folder_URL>
for create a foldercurl -X PUT <folder_URL>/<file_name> --data-binary @<file_location_in_pc>
for upload a file.This is an example of the code: