list files/folders in owncloud with php curl -



list files/folders in owncloud with php curl -

this unusual question next of owncloud api , working curl can json or xml output <url>/cs/v1.php/apps/files_sharing/api/v1/shares

my question if files_sharing 1 app works or if illustration files app has parameters not documented.

thanks in advance.

the share api specific info of sharing files/folders , share them.

to obtain list of files/folders of directory must utilize access through webdav interface localted under path remote.php/webdav/ of server.

for illustration list of files of root folder can utilize command:

curl -x propfind -u user:password "http://yourserver.com/owncloud/remote.php/webdav/"

also have more http methods create more things:

propfind = list of files/folders mkcol = create folder delete = delete file/folder move = move or rename file or folder put = upload file get = download file

php curl owncloud

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -