answersLogoWhite

0

You can make a folder with batch by using the command: md Foldername

Example:

@echo off

md WikiAnswers

exit

The batch file would make a folder named WikiAnswers, and it would appear on your desktop

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you use batch files to copy files from the same folder as the batch file?

Ah, darling, it's as easy as pie. Just whip up a batch file with the command "copy %~dp0*.* destination_folder" and voilà, you're all set to copy those files from the same folder. No need to break a sweat, it's a piece of cake!


How do you make a batch file to move files?

in your batch file type: Move (the directory or folder and the file) space (the directory you want it in) example: move "C:\Users\%username%\Desktop\text.txt" "C:\Users\%username% You can change the %username% to your username but %username%is the variable for your username


How you can make a batch file which delete a directory on booting?

REM deletes a file C: del filename exit Create a file, above, using wordpad and save it with the extension .BAT Modify the line C: del filename, to indicate where the file is and instead of 'filename' write the name of the file you want to delete. (REM is just a remark to remind you what it does..) Say you call the batch file 'deleter.bat', then you have to include this file name in the startup program file. This will depend on what operating system you are using. Old DOS, would use an autoexec.bat file. You could then actually add the delete command in with the autoexec.bat file.


Is there any batch file editor to create batch file without learning syntax?

You can't download a program that makes a batch file to do what you want to do. You will need to legally learn about hacking, and then write the file yourself.


How to create a batch file and impliment it?

To create a batch file open notepad, textedit, or whatever editor you wish to use. Once open write your program, check for errors, and "make simple text." Save this program as whateveryouwant.bat. Open the file and the batch file will execute.


What is a batch file?

A batch file is the text file that contains a series of commands that MS-DOS carries out. A batch file is created by COPY CON command after specifying a file name by using extension as .BAT in DOS mode.


How do you log into a website by using batch file?

wot :)


How do you create ipconfig batch file?

Here is an example of a batch file that carries out the command ipconfig. @echo off ipconfig /all pause exit


Create a batch file to create a directory with name as C.B.S.E in the root directory?

Consider file name is "abc.bat"C:\> edit abc.bat - It will open a DOS editor.. Enter the following lines..md C:\cbseNow press Alt, then Press F and then Press X.. It will ask you to save the document, select Yes..now just enter the file name (without extension) i.e. C:\> abc and press enter..This will make a directory under C:\


What is the difference between a directory file and an ordinary file?

1. Directory files are the system file and can be not change or modified. The ordinary file are the one user create and it can be modified and changed .


How do you get a batch file to delete a directory when it says Acess is Denied?

If it says access is denied that means that access is deined, you can't delete it. I think you are probably trying to make a batch file virus to delete system files and is trying to make the batch file delete everything, but came into the access is deined problem.


What are five unix commands?

cp - copy a file rm - delete a file mv - rename a file mkdir - create a directory rmdir - remove a directory etc...