- URL:
- https://<root>/system/directories
- Methods:
GET
- Required Capability:
- Access allowed with any authorized privilege
- Version Introduced:
- 10.1
Description
The directories
resource returns all the server directories. You can add a new directory using the Register Directory operation. You can then configure GIS services to use one or more of these directories. If you no longer need the server directory, you must remove the directory by using the Unregister Directory operation.
Request parameters
Parameter | Details |
---|---|
| The response format. The default response format is Values: |
Example usage
The following is a sample request URL used to access the directories
resource:
https://machine.domain.com/webadaptor/admin/system/directories?f=pjson
JSON Response syntax
{
"directories": [<dir1>, <dir2>]
}
JSON Response example
{
"directories": [
{
"name": "mycache",
"physicalPath": "\\\\server\\arcgisserver\\mycache",
"directoryType": "CACHE",
"cleanupMode": "NONE",
"maxFileAge": 0,
"description": "Used by service configurations to read/write cached tiles.",
"virtualPath": "/rest/directories/mycache"
},
{
"name": "myjobs",
"physicalPath": "\\\\server\\arcgisserver\\myjobs",
"directoryType": "JOBS",
"cleanupMode": "NONE",
"maxFileAge": 0,
"description": "Used to store GP jobs.",
"virtualPath": "/rest/directories/myjobs"
}
]
}