cd(dirname)
cd dirname
previous_path = cd(dirname)
cd ..
cd
| Parameter | Description |
|---|---|
| dirname | a string: directory name to move. |
| Parameter | Description |
|---|---|
| previous_path | a string: previous directory. |
Changes the current working directory to dirname.
a = cd() without input argument returns the current working directory.
cd() without input argument displays the current working directory.
previous = cd(tempdir())
cd
cd ..
| Version | Description |
|---|---|
| 1.0.0 | initial version |