Skip to content
This repository was archived by the owner on May 21, 2020. It is now read-only.
Florian Rappl edited this page Dec 21, 2014 · 2 revisions

cd

Changes the current working directory.

cd(path)

The change directory method changes the currently set working directory. This enables you to access all files in the new directory with their file name only.

Argument path

String

Returns 1. entry

Void

Example

cd("..")

Navigates to the upper directory of the current working directory.

Example

cd("C:/")

Navigates to the root directory of the drive C.

Example

cd("../../../")

Navigates three directories up.

Clone this wiki locally