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

# cd

> Change the current working directory to another directory. No quotes are necessary and relative paths are fine

## Summary

Change the current working directory to another directory. No quotes are necessary and relative paths are fine

* Needs Admin: False
* Version: 1
* Author: @its\_a\_feature\_

### Arguments

#### path

* Description: path to change directory to
* Required Value: True
* Default Value: None

## Usage

### Without Popup Option

```
cd ../path/here
```

## MITRE ATT\&CK Mapping

* T1083

## Detailed Summary

You can either type `cd` and get a popup to fill in the path, or provide the path on the command line. This command boils down to a single Objective C call:

```javascript theme={null}
fileManager.changeCurrentDirectoryPath(command_params['path']);
```
