Integration with Other Applications > Integrated Software Management > PTC Windchill Integration for Software Build Tools Developer's Guide > Using the Windchill Integration for Software Build Tools Commands > CreateFolder
  
CreateFolder
The CreateFolder command creates a folder in a container at a specified location.
Command-Line Syntax
java -jar RBMWebServiceCore.jar -ServiceName CreateFolder -ContainerType -ContainerName -FolderName [-FolderLocation]
Argument
Description
—ContainerType
One of LIBRARY, PRODUCT, or a PROJECT.
—ContainerName
Name of the container.
—FolderName
Name of the folder.
—FolderLocation
A location in the specified folder.
—FolderDescription
Description for the folder to be created.
Configuration File Template
<service>
<ServiceName>CreateFolder</ServiceName>>
<ContainerType>...</ContainerType>
<ContainerName>...</ContainerName>
<FolderName>...</FolderName>
<FolderLocation>...</FolderLocation>
<FolderDescription>...</FolderDescription>
</service>
Examples
To create a folder by the name F1 in the default/root location of GOLF_CART:
java -jar RBMWebServiceCore.jar -ServiceName CreateFolder -ContainerType PRODUCT -ContainerName GOLF_CART -FolderName F1
To create a folder by the name F2 inside the existing folder F1 under GOLF_CART:
java -jar RBMWebServiceCore.jar -ServiceName CreateFolder -ContainerType PRODUCT -ContainerName GOLF_CART -FolderName F2 -FolderLocation F1