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
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!
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
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.
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.
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.
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.
wot :)
Here is an example of a batch file that carries out the command ipconfig. @echo off ipconfig /all pause exit
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:\
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 .
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.
cp - copy a file rm - delete a file mv - rename a file mkdir - create a directory rmdir - remove a directory etc...