How to create File and Folder in Windows 10 using DOS?

Published: Last Updated on 6.6K views 3 minutes read
A+A-
Reset

Microsoft Disc Operating System has never lost its value even Windows has seen evolution to Windows 10. Compiled nearly 11,000 times and has revamped its user interface and across all devices from command-based MS-DOS. Still Microsoft ships windows with command prompt to run DOS programs.

Sometimes, we may need to create files such as some BAT script or some configuration files, which we can simply create using DOS Command prompt.

CommandPrompt

Let’s open Command prompt

Prompt means “Assist by suggesting the next words of something forgotten or imperfectly learned.” MS DOS prompt also help you and interfaces with you.

  • C: (colon) is current drive, (backslash) is symbol for directory (folder),
  • Users is directory name, (backslash) is directory symbol,
  • John is name of folder and > (greater than) is command prompt symbol. This is the place, where you will write command.

1. How to create Folder?

Use following commands to create a folder (directory) in MS-DOS command prompt.

md foldername ↵
or
mkdir foldername ↵

Meanings of Above Command:

  • md or mkdir – Make Directory
  • – Enter Key to execute command.

2. How to create a File?

Use following commands to create a file in MS-DOS command prompt.

copy con filename ↵
--Text----
^Z ↵

Meaning of above commands.

  • copy con – This command is used for creating new file.
  • – This is Enter key. This executes command typed in prompt.
  • –Text–,.. .. .. in DOS mode. – This is text of your file.
  • ^Z – This is Ctrl+Z key. This saves current file. Alternate for this is F6 key.

Below is an example using both commands.

CD Desktop
MKDIR Test
CD Test
Copy con WiFiHotSpot.BAT
NETSH WLAN SET HOSTEDNETWORK MODE=ALLOW SSID=John KEY=12345678
NETSH WLAN START HOSTEDNETWORK
QUIT
^Z
CommandPrompt-command

 Will be back with more on MS-DOS Series. Do not forget to share this article on social media.

Related Posts

Leave a Reply

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More

Index

Adblock Detected

Please support us by disabling your AdBlocker extension from your browsers for our website.