Windows IT Pro is the authoritative and independent resource for windows nt, windows 2000, windows 2003, windows xp. Features a collection of resources and magazines for windows IT professionals.
  
  
  Advanced Search 


January 2001

Using Conditional Statements

RSS
Subscribe to Windows IT Pro | See More Task Automation Articles Here | Reprints | Or get the Monthly Online Pass—only $5.95 a month!

Conditional statements are a feature of every programming language. Windows includes the MS-DOS IF statement, which you'll find useful in batch files and shell scripts. The functionality of the IF statement is fairly straightforward: The OS evaluates a specific condition, and according to the result of the evaluation, the OS performs specified actions.

Windows' IF statement uses the following syntax:

IF [NOT] <some condition> <action if condition is true>

For example, to compare two strings you would type

IF WINDOWS==WINDOWS ECHO Strings equal

The result would be a Strings equal message.

Note that in IF statements, string comparisons are case-sensitive. In the previous example, changing one of the WINDOWS to Windows would cause the OS to evaluate the condition as false and ignore the action statement.

The IF statement's optional NOT operator provides another way to handle string comparisons. For example, consider the following command:

IF NOT WINDOWS==windows ECHO Strings not equal

In this example, WINDOWS (i.e., all capital letters) doesn't equal windows (i.e., all lowercase letters); therefore, the OS will display a Strings not equal message.

To use the IF statement to check whether a file exists, slightly change the basic syntax:

IF [NOT] EXIST <filename> <action if file exists>

For example, you might use

IF EXIST system.ini type system.ini

If system.ini exists, the OS will display the file's contents. Or, you might use

IF NOT EXIST system.ini type system.ini

If system.ini doesn't exist, the OS generates an error message.

End of Article



Reader Comments
this article helped me to understand in a while the if statement of batch files. I visited other pages and I found nothing.

Yordano April 21, 2004


You must log on before posting a comment.

If you don't have a username & password, please register now.




Top Viewed ArticlesView all articles
PsExec

This freeware utility lets you execute processes on a remote system and redirect output to the local system. ...

Command Prompt Tricks

One reader shares his tip for setting up the command prompt to reflect a remote path. ...

How can I stop and start services from the command line?

...


Task Automation Whitepapers Essential Guide to E-discovery and Recovery for Microsoft Exchange

Continuous Data Protection and Recovery for Microsoft Exchange

Protecting (You and) Your Data with Exchange Server 2007

Related Events Check out our list of Free Email Newsletters!

Task Automation eBooks Spam Fighting and Email Security for the 21st Century

A Guide to Windows Certification and Public Keys

Keeping Your Business Safe from Attack: Patch Management

Related Task Automation Resources Become a VIP member of the Windows IT Pro community!
Get it all with the VIP CD and VIP access. A $500+ value for only $279!

Subscribe to Windows IT Pro!
Solve your toughest technical problems with our experts and access 10,000 + articles online. 30% off

Monthly Online Pass - Only $5.95!
Get instant access to 10,000+ articles from Windows IT Pro Magazine!

TechNet Virtual Labs
Evaluate and test Microsoft's newest products.


Windows IT Pro Home Register FAQ for Windows WinInfo News
Europe Edition About Us Contact Us/Customer Service Media Kit Affiliates / Licensing  
SQL Server Magazine Office & SharePoint Pro Windows Dev Pro IT Job Hound ITTV
IT Library Technology Resource Directory Connected Home Windows Excavator Windows SuperSite 
 
 Windows IT Pro is a Division of Penton Media Inc.
 Copyright © 2008 Penton Media, Inc., All rights reserved. Terms and Use | Privacy Statement | Reprints and Licensing