> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 追加オプション: Laserfiche リポジトリ情報の取得

> FlexiCapture のエクスポートスクリプトで IAfcDmsConnector メソッドを使用して、Laserfiche リポジトリのデータ（リポジトリ、メタデータテンプレート、field、フォルダー）を読み取ります。

LASERFICHE では、Laserfiche リポジトリに関する情報を取得するために、次のメソッドをサポートしています。

* Laserfiche サーバー上のリポジトリ一覧の取得

```
IRepositories[] IAfcDmsConnector.GetRepositories();
```

* エクスポートスクリプトまたはXMLファイルで指定された現在のリポジトリ内のテンプレート一覧の取得

```
IMetadataTemplate[] IAfcDmsConnector.GetMetadataTemplates();
```

* テンプレート内のfield一覧を取得する

```
IField[] IAfcDmsConnector.GetFields(IMetadataTemplate template);
```

* リポジトリのルートフォルダーおよびサブフォルダーの一覧を取得する

```
IFolder exportConnector.GetRootFolder();
IFolder[] exportConnector.GetChildFolders().
```
