1

owncloud 7 を使用しています。ユーザーを作成し、ユーザーのホーム ディレクトリを初期化する (いくつかのフォルダーを作成する) カスタム API 呼び出しを作成したいと考えています。

owncloud のドキュメントが存在します (これは私が見つけた最高のものです)

http://fossies.org/dox/owncloud-7.0.2/annotated.html

4

2 に答える 2

1

ユーザーホームの初期化について: フォルダーの内容が新しいユーザーに対して同じである場合は、その内容でテンプレートディレクトリを作成し、config.php で指定できます。

/** * The directory where the skeleton files are located. These files will be * copied to the data directory of new users. Leave empty to not copy any * skeleton files. */ 'skeletondirectory' => '',

于 2014-10-23T19:01:38.497 に答える