企业管理 > 文件存储和复制 > FvLoader 和 ReplicaLoader > 列出域
  
列出域
要列出容器和域,可将多个命令行自变量附加至命令 java.wt.fv.FvLoader。可通过在命令提示符下输入以下语法来调用这些自变量:
java wt.fv.FvLoader -argument [options]
列出容器或列出域需要调用两次 FvLoader,这会在以下两节中论述。
-listContainers 自变量获取数据
第一次调用 FvLoader 得到的输出中包括容器和域信息。使用自变量 -listContainers 可将外部容器路径列表打印到控制台。可使用管道符号将输出重定向到某个文件。输出只能用作 -listDomains 自变量的输入,将在接下来的示例之后对此进行说明。
示例:
C:\> java wt.fv.FvLoader - listContainers
/
/wt.inf.container.OrgContainer=PTC
C:\>
管道示例:
C:\> java wt.fv.FvLoader - listContainers | tee c:\temp\cont.txt
-listDomains 自变量显示数据
使用自变量 -listDomains 接受 -listContainers 的输出,以列出域并对列表格式化。可使用两个格式化选项来指定列表。自变量使用以下语法格式:
-listDomains <containerPath> includeDescendentContainers
此 FvLoader 调用可输出到控制台的域路径列表。可使用管道将输出重定向到一个文件。这两个自变量在下面进行说明,并且是可选的。如果未指定自变量,该命令会输出系统中的全部域。
containerPath - 如果指定,则仅驻留在指定容器中的域打印到控制台。如果自变量包含空格,需对其加双引号。可键入路径完成指定。
includeDescendentContainers - 如果指定该自变量,则也会打印驻留在 containerPath 的派生容器中的域。
例如,如果想包含驻留在派生容器中的域,并使用容器路径 /wt.inf.container.OrgContainer=PTC,该命令将采用以下形式:
java wt.fv.FvLoader - listDomains
/wt.inf.container.OrgContainer=PTC includeDescendentContainers
输出示例如下:
C:\> java wt.fv.FvLoader - listDomains /wt.inf.container.OrgContainer=PTC
[/wt.inf.container.OrgContainer=PTC]/PTC
[/wt.inf.container.OrgContainer=PTC]/Default/Project
[/wt.inf.container.OrgContainer=PTC]/Default/Project/
Administration
C:\>
C:\> java wt.fv.FvLoader - listDomains "/wt.inf.container.OrgContainer=PTC/
wt.inf.library.WTLibrary=Windchill PDM"
[/wt.inf.container.OrgContainer=PTC/wt.inf.library.WTLibrary=Windchill PDM]/
ChangeItems
C:\>
C:\> java wt.fv.FvLoader - listDomains /wt.inf.container.OrgContainer=PTC
includeDescendentContainers
[/wt.inf.container.OrgContainer=PTC]/PTC
[/wt.inf.container.OrgContainer=PTC]/Default/Project
[/wt.inf.container.OrgContainer=PTC]/Default/Project/
Administration
[/wt.inf.container.OrgContainer=PTC/wt.inf.library.WTLibrary=Windchill PDM]/
ChangeItems
C:\>