cd

Windows CMD · Directories · available in the simulator · Also: chdir

What it does

Changes the current directory.

Syntax

cd [/d] [unidad:][ruta]

Options and parameters

  • ..

    Navigates up one level to the parent directory.

    cd ..
  • /d

    changes drive as well

  • /D

    Changes the current drive in addition to the current directory.

    cd /d D:\Proyectos

Usage examples

  • cd c:\users\admin
  • cd \users\admin
  • cd ..
  • cd /d D:\datos
  • cd /d D:\Proyectos

Notes and common mistakes

  • chdir is the equivalent long form of the command.
Practise cd

Related commands