How to Create and Delete Files and Directories from Windows Command Prompt
This wikiHow teaches you how to use the Windows command prompt to create and delete files and folders (also known as directories). The files you create at the prompt can be modified and managed with Windows apps, including File Manager and...
Method 1 of 4:
Creating a Folder
- Open the Command Prompt. Here are two quick ways to do so:
- Right-click the Start menu and select Command Prompt.
- Press ⊞ Win+S to open the search bar, type cmd, and then click Command Prompt in the search results.
- Go to the desired folder. The prompt will open to C:UsersYourName by default. If you don't want to create a new folder here, type cd path_to_folder and press ↵ Enter. Replace path_to_folder with the actual folder location.
- For example, if you want to create a folder on your Desktop, folder, you would type in cd desktop and press ↵ Enter.
- If the folder isn't in your user directory (e.g., C:UsersYourName), you'll have to type in the whole path (e.g., C:UsersSomeoneElseDesktopFiles).
- Type mkdir NameOfFolder at the prompt. Replace NameOfFolder with the name of the folder you wish to create.
- For example, to make a directory named "Homework", you would type mkdir Homework.
- Press ↵ Enter. This runs the command to create a folder with the desired name.
Method 2 of 4:
Deleting a Folder
- Open the Command Prompt. Here are two quick ways to do so:
- Right-click the Start menu and select Command Prompt.
- Press ⊞ Win+S to open the search bar, type cmd, and then click Command Prompt in the search results.
- Go to the folder containing the folder you want to delete. The prompt will open to C:UsersYourName by default. If the folder you want to delete is somewhere else, type cd path_to_folder and press ↵ Enter. Replace path_to_folder with the actual folder location.
- For example, if you want to delete a folder from your Desktop, type cd desktop.
- If the folder isn't in your user directory (e.g., C:UsersYourName), you'll have to type in the whole path (e.g., C:UsersSomeoneElseDesktopFiles).
- Type rmdir /s FolderName. Replace FolderName with the name of the folder you want to delete.[1]
- For example, if you're trying to delete your "Homework" folder, you'd type in rmdir /s Homework here.
- If the folder's name has a space in it (e.g., "Homework assignments"), place the name in quotations (e.g., rmdir /s "Homework assignments").
- Press ↵ Enter to run the command.
- If you try to delete a directory that contains hidden files or folders, you'll see an error that says "The directory is not empty." In this case, you'll have to remove the "hidden" and "system" attributes from the files inside the folder. To do this:[2]
- Use cd to change into the directory you want to delete.
- Run dir /a to view a list of all files in the directory and their attributes.
- If you're still okay with deleting all of the files in the folder, run attrib -hs *. This removes special permissions from the undeletable files.
- Type cd .. and press ↵ Enter to go back one directory.
- Run the rmdir /s command again to delete the folder.
- If you try to delete a directory that contains hidden files or folders, you'll see an error that says "The directory is not empty." In this case, you'll have to remove the "hidden" and "system" attributes from the files inside the folder. To do this:[2]
- Press y to confirm. This will permanently remove the directory.
Method 3 of 4:
Creating a File
- Open the Command Prompt. Here are two quick ways to do this:
- Right-click the Start menu and select Command Prompt.
- Press ⊞ Win+S to open the search bar, type cmd, and then click Command Prompt in the search results.
- Go to the folder in which you want to create the file. The prompt will open to C:UsersYourName by default. If the folder is somewhere else, type cd path_to_folder and press ↵ Enter. Replace path_to_folder with the actual folder location.
- For example, if you want to create a file on the Desktop, type cd desktop and press ↵ Enter.
- If the folder isn't in your user directory (e.g., C:UsersYourName), you'll have to type in the whole path (e.g., C:UsersSomeoneElseDesktopFiles).
- Create an empty file of any type. If you don't want to create an empty file, skip to the next step. To create an empty file:
- Type type nul > filename.txt.
- Replace filename.txt with the desired file name and extension. Other common file extensions include ".docx" (Word document), ".png" (empty photo), ".xlsx" (Excel document), and ".rtf" (rich text document).
- Press ↵ Enter.
- Create a file containing certain text. If you don't want to create a file with certain text inside, skip to the next step. Use these steps to create a plain text file that you can type into:
- Type copy con testfile.txt, but replace testfile with the desired file name.
- Press ↵ Enter.
- Type your desired text. This is rudimentary text editor, but it's good for quick notes or code. You can use the Enter key as you type to move to the next line if you wish.
- Press Ctrl+Z when you're finished editing the file. This saves everything you've typed into the file.
- Another way to do this is to run this command: echo enter your text here > filename.txt.
- Create a file that's a certain size. If you don't want to create a file that's a specific size, skip thi step. To create a blank file based on byte size, use this command:
- fsutil file createnew filename.txt 1000.
- Replace filename with the desired file name, and 1000 with the actual number of bytes you'd like the file to be.
Method 4 of 4:
Deleting a File
- Open the Command Prompt. Here are two quick ways to do this:
- Right-click the Start menu and select Command Prompt.
- Press ⊞ Win+S to open the search bar, type cmd, and then click Command Prompt in the search results.
- Go to the folder containing the file you want to delete. The prompt will open to C:UsersYourName by default. If the file is somewhere else, type cd path_to_folder and press ↵ Enter. Replace path_to_folder with the actual folder location.
- For example, if you want to delete a file from the Desktop, type cd desktop and press ↵ Enter.
- If the folder isn't in your user directory (e.g., C:UsersYourName), you'll have to type in the whole path (e.g., C:UsersSomeoneElseDesktopFiles).
- Type dir and press ↵ Enter. This displays a list of all files in the current folder. You should see the file you want to delete in this list.
- Using Command Prompt to delete files results in the files being deleted permanently rather than being moved to the Recycle Bin. Exercise caution when deleting files via Command Prompt.
- Type del filename and press ↵ Enter. Replace filename with the full name and extension of the file you want to delete. File names include file extensions (e.g., *.txt, *.jpg). This deletes the file from your computer.
- For example, to delete a text file entitled "hello", you would type del hello.txt into Command Prompt.
- If the file's name has a space in it (e.g., "hi there"), you will place the file's name in quotations (e.g., del "hi there").
- If you get an error that says the file cannot be deleted, try using del /f filename instead, as this force-deletes read-only files.
3.5 ★ | 11 Vote
You should read it
- Change all file extensions in a Folder with the CMD command
- Ftype command in Windows
- What is a folder The concept of a file (File) and a folder (Folder) in a computer
- How to Delete a File Using Command Prompt
- How to Copy Files in Command Prompt
- 6 ways to rename files and folders in Windows 10
- How to Open Folders in CMD
- Find and delete all .DS_Store files with a single command
- Fsutil command sparse in Windows
- How to Remove .Ds_Store Files on Mac OS X
- How to Create a File in Unix
- How to completely hide a folder with a single command on Windows