Using batch files in windows

How to test if a path is a file or directory in Windows batch file?

I searched here, found someone using this

but didn’t work, when %1==c:\this is a file with spaces.csproj , the test still success, which means it will still be treated as a folder.

anyone knows the answer, i guess this is a very common problem and Windows has existed for many many years, it should have a very simple solution.

6 Answers 6

I know the if exist path\nul test for a folder used to work on MS-DOS. I don’t know if it was broken with the introduction of long file names.

I knew that if exist «long path\nul» does not work on Windows batch. I did not realize until today that if exist path\nul works on Vista and beyond as long as path is in the short 8.3 form.

The original code appears to work on Vista. It seems like it should work on XP as well, but I believe the following XP bug is getting in the way: Batch parameter %

The original code does not need the FOR loop, it could simply use %

Here is a variation that fully classifies a path as INVALID, FILE or FOLDER. It works on Vista, but does NOT work on XP because of the %

s1 bug. I’m not sure how it performs on MS-DOS.
EDIT 2015-12-08: There are a number of Windows situations where this fails

I believe this variation will work with nearly all versions of Microsoft batch, including MS-DOS and XP. (it obviously won’t work on early versions of DOS that don’t support PUSHD)

UPDATE 2014-12-26

I’m pretty sure the following will work on all versions of Windows from XP onward, but I have only tested on Win 7.
Edit 2015-12-08: This can fail on network drives because the folder test can falsely report a file as a folder

UPDATE 2015-12-08

Finally — a test that truly should work on any Windows version from XP onward, including with network drives and UNC paths

Note — This technique is intended to be used for a path without any wildcards (a single specific file or folder). If the provided path includes one or more wildcards, then it provides the result for the first file or folder that the file system encounters. Identical directory structures may give different sort order results depending on the underlying file system (FAT32, NTFS, etc.)

www.makeuseof.com

Follow MUO

How to Use Windows Batch File Commands to Automate Repetitive Tasks

Do you frequently execute boring and repetitive tasks? A batch file might be exactly what you’re looking for. Use it to automate actions. We’ll show you the commands you need to know.

Before Windows became our favorite GUI, everything was done using commands. Some of our readers may remember using MS-DOS commands to complete the smallest of tasks. These days, you can still use commands to automate tasks and speed up your productivity.

If you have a number of repetitive tasks, you can write a batch file to automate the process. Keep reading for several useful batch files you can use to automate your life!

What Is a Batch File?

A batch file is a type of script that contains a series of commands. The batch file can contain any number of commands. So long as the operating system recognizes the script’s commands, the batch file will execute the commands from start to finish.

How to Create a Batch File

You write batch files in plain text. You can use any text editor you like, but the standard Notepad app does the job just fine. If you’re creating a complex batch file, the additional features of Notepad++ are handy. But for now, you can stick with Notepad, as each example batch file below has been tested using that program.

Читайте также:  Даты выпуска версий windows

Once you finish inputting your batch file commands, head to File > Save As, then give your batch file an appropriate name. After saving, you can change the file extension from .txt to .bat, which changes the file type. To do this, right-click the file and select Rename, then change the file extension as above. Alternatively, highlight the file and press F2, then change the file extension,

Useful Windows Batch Files for Automation

Here are a few really useful batch files for you to play around with and some short descriptions of what each command syntax and parameter can do.

1. Open Multiple Programs Using a Batch File

If you have a list of programs you open each time you fire up your computer, you can use a batch file to automate the process. Instead of opening each program manually, you can open them simultaneously.

In the example below, I’m opening the Google Chrome browser, a Word document I’m working on, and VMware Player.

Open a new text file and input:

You can add as many applications and files as you want to the batch file. The batch file commands in this file are:

  • @echo displays the command currently being executed in a command shell. We turned this off.
  • cd changes the directory.
  • start does the obvious and starts the program.

2. Delete Files Older Than a Certain Time Using a Batch File

You can use a batch file to scan for and then delete files older than a certain amount of days. You set the maximum age range for the files in the batch file, allowing you to customize the process. Furthermore, you can use the batch file script to delete a specific file type or a group of files in a folder, so long as they meet the criteria expressed in the commands.

The first example deletes files in the specified folder older than three days:

The second example only deletes files with the .docx file extension older than three days:

The batch file commands and switches in use here are:

  • forfiles allows us to use commands for each file in a location i.e. the commands will apply to each file fitting the command arguments
  • /p details the path to start searching i.e. the directory you want to delete the files from
  • /s instructs the command to search sub-directories
  • /m instructs the command to use the given search mask. We used the wildcard operator «*» in our first example, and specified .docx in the second
  • /d-3 is the time setting. Increase or decrease depending on your requirements
  • /c del @path is the delete aspect of the command

3. Automate System Backup Using a Batch File

You can use a batch file to backup a specific folder or as part of a more substantial backup setup. You should use system backup and system restore points as part of your regular system maintenance. Sometimes, it pays to make a couple of copies of anything that might make you cry if it were deleted or destroyed.

There are many different batch file backup methods you can use. Below are instructions for a basic backup batch file and another slightly more advanced version.

Batch File Backup Automation: Method #1

Open Notepad, then input the following commands:

Now, head to File > Save As, name the file systembackup.bat, and complete the Save.

The easy backup method works best for backing up individual folders, but isn’t entirely practical for anything more complex. The batch file commands used here are:

Batch File Backup Automation: Method #2

This time you will build a longer string of folders to backup, including your system registry and other important folders.

Here’s an explanation as to what the commands in this batch file mean and the bits you can customize.

First, set the location you want to copy the files to using set drive=X:\Backup. In the example, the drive is set to «X.» You should change this letter to whatever your external backup drive letter is.

The next command sets the specific backup copy type your batch file will use, in this case, xcopy. Following the xcopy command is a string of parameters that include extra tasks:

  • /s copies system files
  • /c carries out the command specified by the string, then terminates
  • /d enables drive and directory changes
  • /e copies empty directories
  • /h copies hidden files
  • /i if destination doesn’t exist, and you’re copying more than one file, /i assumes the destination must be a directory
  • /r overwrites read-only files
  • /y suppresses prompts confirming you want to overwrite read only files

Now, if you want to add more backup locations to the batch file, use the following command:

The batch file includes several folders to copy. You might note that the folders comprise different parts of your Windows user profile. You can backup the entire folder using the following command, assuming you’re using the same «set drive» and «set backupcmd.»

Читайте также:  Windows 10 version 1703 updated march 2017

Batch File Backup Automation: Method #3

The final batch file backup automation script is super simple. It involves creating a backup of a folder to an external drive, then shutting the computer down on completion.

In a new text file, input the following commands:

Save the batch file, remembering to switch the file extension to .bat. The additional batch file commands used here are:

  • Robocopy /MIR: You’ve already taken robocopy for a spin. The additional /mir parameter makes sure that every folder and subfolder copies, too.
  • Shutdown -s -t: The shutdown command tells Windows you want to shutdown, while -s confirms it is a full shutdown (rather than a restart or entering hibernation mode). The -t parameter allows you to set a specific length of time before the system begins the shutdown process, defined in seconds. In the example, the timer is set for 30s, you can change it to whatever you like. Removing the timer parameter will cause the shutdown process to start immediately.

When you run the batch file, it will take a backup of the defined files and folders and then shut down your computer.

4. Change Your IP Address Using a Batch File

Most of the time, your computer uses a dynamic IP address to connect to the internet. Sometimes, you might use a static IP address instead, for instance, in your workplace, school, or otherwise. Sure, you could change between a dynamic and static IP address manually. But if it is somewhere you visit regularly, why not make a batch file to do the work for you?

Here’s how you make a batch file to switch to a static IP address and another to switch back to dynamic:

Batch File to Switch to Static IP Address

Open a new text file, then copy in the following command:

Where the first series of «x’s» is your required static IP, the second is the network/subnet mask, and the third is your default gateway.

Batch File to Switch to Dynamic IP Address

When you want to switch back to a dynamic IP address, you can use this batch file.

Open a next text file, then copy in the following command:

If you have more than one network you connect to regularly, duplicate the first file, and edit the details accordingly.

5. Make Your Kids Go to Bed With a Batch File

My kids aren’t old enough to be playing video games in the middle of the night, but I remember my tactics against my parents so I could play Championship Manager 2 into the small hours of the morning. Luckily, my parents didn’t know about using commands to control my actions.

You can use the following batch file to set a warning and begin a countdown timer on your kid’s machine:

Here, the computer continually checks to see if the time is half-past eleven. When the time correlates, the message «GO TO BED RIGHT NOW. » will display, along with the 120s countdown timer. The 120s should be enough time to save whatever game they are playing, or their work, before the computer shuts down.

To stop the countdown, press Windows Key + R. (Of course, don’t tell the kids this!)

6. Batch Rename and Mass Delete Files

I’ve written a more extensive article dealing with batch file renaming and deletion, so I won’t explore this one too much, but you can use batch files to automate these sometimes tedious tasks. Check out the article for some extended batch commands, and get bulk deleting straight away.

7. Play Pokémon in a Batch File

This batch file has nothing to do with productivity. In fact, it’s the absolute opposite. If you’re susceptible to Pokémon-related gaming addictions, you should give this one a miss because it’s essentially Pokémon Red in text form.

If you don’t want to miss out, you can grab PokéBatch and start playing. Download the text file, then switch the file extension from .txt to .bat, and you’re good to go.

If you like a challenge, why not check out the most fun Pokémon challenges to prove your mastery of the series?

Automate Your Life With Windows Batch Files!

These are just six batch files you can create to automate tasks on your system. With more practice, you’ll be able to accomplish unheralded amounts of activities on your system between batch files and the Command Prompt.

PowerShell is what you’d get if you crossed the Command Prompt with Batch Scripting, threw in some extra features, and kicked it all up several notches. Here are several reasons you should try it.

Gavin is the Junior Editor for Windows and Technology Explained, a regular contributor to the Really Useful Podcast, and was the Editor for MakeUseOf’s crypto-focused sister site, Blocks Decoded. He has a BA (Hons) Contemporary Writing with Digital Art Practices pillaged from the hills of Devon, as well as over a decade of professional writing experience. He enjoys copious amounts of tea, board games, and football.

Читайте также:  Создать вместо новое windows 10

Subscribe To Our Newsletter

Join our newsletter for tech tips, reviews, free ebooks, and exclusive deals!

One More Step…!

Please confirm your email address in the email we just sent you.

How to Create and Use a Batch File to Move Multiple Files in Windows 10

Moving and arranging files around on your computer can be time-consuming. In Windows 10, it is faster to create a batch file (.bat) and move multiple source files and subfolders to any destination folder. You can define the properties of such a .bat file in advance and transfer files later at your ease.

A .bat file is a well-known yet little used secret of Windows which can execute different kinds of commands with actionable results.

This is the latest 2020 guide for creating a batch file in Windows 10 from scratch. We will also show how to utilize such a .bat file to move files from any source to a destination folder.

Create a Batch File from Scratch

You can create a .bat file in any Windows 10 folder of your choice. To create it from scratch, simply go to the destination folder of your choice, right-click and create a new .txt file.

Once the Notepad file is created, rename the extension from .txt to .bat.

Ignore the “file will become unusable” message due to change in file name extension and click Yes. An empty batch file has now been created with no contents.

The .bat file is prominently visible in the folder. It can be deleted, copy-pasted, renamed, and transferred to any other folder.

Use Batch File to Create Folders and Subfolders

You can use a .bat file to create separate folders and subfolders whose contents and properties remain connected to the .bat file. No matter which PC location you move the .bat file to, the folders and subfolders will follow. Any contents saved in these folders can simply be moved by relocating the Master .bat file.

Right-click the created .bat file to “Edit using Notepad” and enter the following to create folders using folder names.

The purpose of @echo off is to disable the display prompt. This way you won’t have to deal with the Command prompt, although it’s internally connected to .bat file processes. If your folder name should contain a space, put it inside quotes. Save the file and exit Notepad.

As soon as you click the .bat file, it will execute the command to create the new folders.

To create subfolders in any folder, modify the above code as shown here. Save the file and exit Notepad.

As shown here, the subfolders have been created.

Move Files from One Folder to Another Using Batch Files

You can use .bat files to move files from any folder on your Windows 10 to a destination folder of your choice. All you need is a proper folder path to complete the transfers. The best way to know a folder’s path is to right-click and select “Properties” followed by “Location.”

As shown here, we will move all the contents of “FolderA” to “FolderB.” The command is as follows:

Here, *.* is a wildcard that tells Windows 10 to copy all the files in the source folder. If any part of the folder path has a folder name with spaces, you need to enclose it within quotes.

Save the file and exit Notepad.

The entire contents of one folder have been moved to another by clicking .bat file.

If you want to move only select files, the code can be slightly modified as shown below.

If you wish to move only specific file types between the folders, for example, JPG files, modify the code as shown below.

For example, to move all .jpg files, use the code below:

As per the code, only JPG files have moved in this example.

You can replace the .jpg with .pdf, .png, or any other file type you want to move.

In this guide you have learned how to create a batch file from scratch and move files and folders around your computer. Every time you click on a .bat file, it will move the contents at the target location. It’s so simple!

Do you also know that you can batch edit images abd batch rename files in Windows? Click the links to find out how

Related:

Sayak Boral is a technology writer with over ten years of experience working in different industries including semiconductors, IoT, enterprise IT, telecommunications OSS/BSS, and network security. He has been writing for MakeTechEasier on a wide range of technical topics including Windows, Android, Internet, Hardware Guides, Browsers, Software Tools, and Product Reviews.

Оцените статью