Milton Quirino
Milton Quirino

Reputation: 108

Owncloud - How create a folder using API?

How create a folder in ownCloud using API ?

I'm searching about it , but found nothing.

I'm using ownCloud version 8.2.1

Regards,

Upvotes: 0

Views: 827

Answers (1)

Samuel Allan
Samuel Allan

Reputation: 392

In their official docs you can find it here

Create a new folder

newFolder(string $path) : \OCP\Files\Folder

Parameters

$path - a string (the relative path of the folder)

Upvotes: 1

Related Questions