About 10,100 results
Open links in new tab
  1. chdir (2) - Linux manual page - man7.org

    chdir () changes the current working directory of the calling process to the directory specified in path. fchdir () is identical to chdir (); the only difference is that the directory is given as an open file descriptor.

  2. chdir() in C language with Examples - GeeksforGeeks

    Jul 11, 2025 · The chdir command is a system function (system call) that is used to change the current working directory. On some systems, this command is used as an alias for the shell command cd. …

  3. _chdir, _wchdir | Microsoft Learn

    Oct 20, 2023 · The _chdir function changes the current working directory to the directory specified by dirname. The dirname parameter must refer to an existing directory. This function can change the …

  4. chdir | Microsoft Learn

    Nov 1, 2024 · Displays the name of the current directory or changes the current directory. If used with only a drive letter (for example, chdir C:), chdir displays the names of the current directory in the …

  5. cd (command) - Wikipedia

    In a shell, the change directory command is typically implemented via a system call which on Unix and Unix-like systems is typically POSIX chdir() and on Windows is in the Windows API. The command is …

  6. chdir (2): change working directory - Linux man page

    chdir () changes the current working directory of the calling process to the directory specified in path.

  7. Python - os.chdir() method - GeeksforGeeks

    Jul 11, 2025 · os.chdir () method in Python is used to change the current working directory to the specified path. This function is part of the os module, which provides functionalities to interact with …

  8. CHDIR Command – Change Directory in Windows Command Prompt

    Mar 14, 2026 · Master the CHDIR command to navigate directories in Windows CMD. Complete guide with syntax, examples, and tips. CHDIR is identical to CD—both change the current working directory.

  9. chdir (3p) - Linux manual page - man7.org

    The chdir () function shall cause the directory named by the pathname pointed to by the path argument to become the current working directory; that is, the starting point for path searches for pathnames …

  10. chdir () System Call in Linux - Online Tutorials Library

    chdir () changes the current working directory to that specified in path. fchdir () is identical to chdir (); the only difference is that the directory is given as an open file descriptor.