Possible to make a "dir" list of folders and files?

I’m trying to create a list of folders and directories from a specific location on OwnCloud. Possible?

Hi,
If you’re on the desktop, you should be able to just open a terminal in your desired location and run dir (or the equivalent in your OS). This should also be able with GUI tools, like on Windows WinDirStat.

Alternatively you could also run a command on the server inside the desired location, however you’d need administrative access to the server in order to be able to do that.

The third option could be to make a script that creates a PROPFIND request using curl or similar tools, parse the xml output and repeat this process until you have compiled all the information you need.
More information about using curl to gather information here:
https://doc.owncloud.org/server/10.2/user_manual/files/access_webdav.html#accessing-files-using-curl

1 Like