Jun 2, 2025
mkdir or make directory to create a new directory.mkdir my_cool_folder creates a folder named "my_cool_folder".Problem with Spaces:
mkdir my cool folder, PowerShell interprets "cool" and "folder" as separate parameters, causing an error.Solutions:
mkdir "my cool folder".mkdir my\ cool` folder`.Definition:
PowerShell Escape Character:
Other Shells and Languages:
These notes provide insights into creating directories using both GUI and CLI, especially focusing on handling spaces in directory names using special techniques like quoting and escaping.