Real'sHowTo AddThis Feed Button
Custom Search

Test if a file existsTag(s): Misc Prog HowTo


Single file
@echo off
if exist c:\temp\2010.pdf (
    echo pdf exists
) else (
    echo pdf doesn't exist
)
Using a wildcard
@echo off
if exist c:\temp\*.pdf (
    echo pdf exists
) else (
    echo pdf doesn't exist
)
Single line
if exist c:\temp\2010.pdf echo file exists

if not exist c:\temp\2011.pdf echo file doesn't exist

blog comments powered by Disqus


If you find this article useful, consider making a small donation
to show your support for this Web site and its content.

Written and compiled by Réal Gagnon ©1998-2013
[ home ]