Skip To Content
ArcGIS Developer
Dashboard

Directory

Description

An individual directory resource returns the properties of a directory. A directory is a file system-based folder that contains a specific type of content for the portal. The physicalPath property of a directory locates the actual path of the folder on the file system. Portal for ArcGIS supports local directories and network shares as valid locations.

During the Portal for ArcGIS installation, the setup program asks you for the root portal directory (that will contain all the portal's sub directories). However, you can change each registered directory through this API.

Request parameters

ParameterDetails
f

The response format. The default response format is html.

Values: html | json | pjson

Example usage

The following is a sample request URL used to access an individual directory resource:

https://machine.domain.com/webadaptor/portaladmin/system/directories/testDirectory?f=json

JSON Response syntax


{
  "name": "<name>",
  "physicalPath": "<path>",
  "directoryType": "<type>",
  "description": "<description>"
}

JSON Response example


{
  "name": "content",
  "physicalPath": "D:\\arcgisportal\\content",
  "directoryType": "CONTENT",
  "description": "the default content directory"
}