Quote:
Originally Posted by hocheetiong
how to create folder or files the "folder name and files name" with "space" in command line interface.
|
As mentioned, spaces are 'special' characters under the CLI. As with any other special characters, you need to 'escape' them.
This is done by inserting a backslash. Eg:
mkdir abc\ def
This will create a directory called "abc def"