Is there any way to say if a file is a directory? I have the filename in a variable. In Perl I can do this:

if(-d $var) { print "it's a directory\n" }

link|improve this question

73% accept rate
feedback

11 Answers

up vote 10 down vote accepted

You can do it like so:

IF EXIST %VAR%\NUL ECHO It's a directory

However, this only works for directories without spaces in their names. When you add quotes round the variable to handle the spaces it will stop working. To handle directories with spaces, convert the filename to short 8.3 format as follows:

FOR %%i IN (%VAR%) DO IF EXIST %%~si\NUL ECHO It's a directory

The %%~si converts %%i to an 8.3 filename. To see all the other tricks you can perform with FOR variables enter HELP FOR at a command prompt.

(Note - the example given above is in the format to work in a batch file. To get it work on the command line swap both the %% for %.)

link|improve this answer
you forgot the d flag i think – Roman M Sep 26 '08 at 12:05
This doesn't work . – Vhaerun Sep 26 '08 at 12:17
It worked fine for me and what "D" flag? Roman - The "D:" in your answer is a reference the "D:" drive on your machine. Vhaerun - what did you have VAR set to when you tried this? – Dave Webb Sep 26 '08 at 13:04
Nice tip with the ~s for "short names." Thanks for adding that. +1 helpful. – que que Sep 29 '08 at 16:44
-1 gives the same result if it's a file or directory, as long as it exists. – Richard Feb 19 at 5:48
show 2 more comments
feedback

This seems to work:

if exist %1\* echo Directory

Seems too easy, and there's a niggle at the back of my brain that says not to do it. Anyone know why not?

link|improve this answer
It will fail for directories with spaces in their name unless you put quotes around the argument. – Joey Jun 18 '10 at 11:07
No it doesn't. %1 will already be quoted. Try it. – Gerard Jun 20 '10 at 2:10
2  
This seems to be good, it even correctly handles empty folder correctly. Update: doesn't seem to require the '*' either, just the '\' on the end seems to be enough to verify that it is a folder. – Grant Peters Jan 27 '11 at 0:06
feedback

recently failed with different approaches from the above, quite sure they worked in the past, maybe related to dfs here. now using the files attributes and cut first char

@echo off
SETLOCAL ENABLEEXTENSIONS
set ATTR=%~a1
set DIRATTR=%ATTR:~0,1%
if /I "%DIRATTR%"=="d" echo %1 is a folder
:EOF
link|improve this answer
2  
This is totally the best answer here... It even works if you don't have read permissions on the target file or directory (which is exactly what I needed). Thanks! – ewall Jun 22 '11 at 14:53
feedback

Further to my previous offering, I find this also works:

if exist %1\ echo Directory

No quotes around %1 are needed because the caller will supply them. This saves one entire keystroke over my answer of a year ago ;-)

link|improve this answer
feedback

The NUL technique seems to only work on 8.3 compliant file names.

(In other words, `D:\Documents and Settings` is "bad" and `D:\DOCUME~1` is "good")


I think there is some difficulty using the "NUL" tecnique when there are SPACES in the directory name, such as "Documents and Settings."

I am using Windows XP service pack 2 and launching the cmd prompt from %SystemRoot%\system32\cmd.exe

Here are some examples of what DID NOT work and what DOES WORK for me:

(These are all demonstrations done "live" at an interactive prompt. I figure that you should get things to work there before trying to debug them in a script.)

This DID NOT work:

D:\Documents and Settings>if exist "D:\Documents and Settings\NUL" echo yes

This DID NOT work:

D:\Documents and Settings>if exist D:\Documents and Settings\NUL echo yes

This DOES work (for me):

D:\Documents and Settings>cd ..

D:\>REM get the short 8.3 name for the file

D:\>dir /x

Volume in drive D has no label. Volume Serial Number is 34BE-F9C9

Directory of D:\
09/25/2008 05:09 PM <DIR> 2008
09/25/2008 05:14 PM <DIR> 200809~1.25 2008.09.25
09/23/2008 03:44 PM <DIR> BOOST_~3 boost_repo_working_copy
09/02/2008 02:13 PM 486,128 CHROME~1.EXE ChromeSetup.exe
02/14/2008 12:32 PM <DIR> cygwin

[[Look right here !!!! ]]
09/25/2008 08:34 AM <DIR> DOCUME~1 Documents and Settings

09/11/2008 01:57 PM 0 EMPTY_~1.TXT empty_testcopy_file.txt
01/21/2008 06:58 PM <DIR> NATION~1 National Instruments Downloads
10/12/2007 11:25 AM <DIR> NVIDIA
05/13/2008 09:42 AM <DIR> Office10
09/19/2008 11:08 AM <DIR> PROGRA~1 Program Files
12/02/1999 02:54 PM 24,576 setx.exe
09/15/2008 11:19 AM <DIR> TEMP
02/14/2008 12:26 PM <DIR> tmp
01/21/2008 07:05 PM <DIR> VXIPNP
09/23/2008 12:15 PM <DIR> WINDOWS
02/21/2008 03:49 PM <DIR> wx28
02/29/2008 01:47 PM <DIR> WXWIDG~2 wxWidgets
3 File(s) 510,704 bytes
20 Dir(s) 238,250,901,504 bytes free

D:\>REM now use the \NUL test with the 8.3 name

D:\>if exist d:\docume~1\NUL echo yes

yes

This works, but it's sort of silly, because the dot already implies i am in a directory:

D:\Documents and Settings>if exist .\NUL echo yes

link|improve this answer
The problem appears to be not with long file names but directories with spaces in their names. Or rather, it's the quotes around the variable name that stop the NUL trick from working. I've added some code to my answer which converts file names to 8.3 names before testing. – Dave Webb Sep 29 '08 at 13:28
feedback

Here's a script that uses FOR to build a fully qualified path, and then pushd to test whether the path is a directory. Notice how it works for paths with spaces, as well as network paths.

@echo off
if [%1]==[] goto usage

for /f "delims=" %%i in ("%~1") do set MYPATH="%%~fi"
pushd %MYPATH% 2>nul
if errorlevel 1 goto notdir
goto isdir

:notdir
echo not a directory
goto exit

:isdir
popd
echo is a directory
goto exit

:usage
echo Usage:  %0 DIRECTORY_TO_TEST

:exit

Sample output with the above saved as "isdir.bat":

C:\>isdir c:\Windows\system32
is a directory

C:\>isdir c:\Windows\system32\wow32.dll
not a directory

C:\>isdir c:\notadir
not a directory

C:\>isdir "C:\Documents and Settings"
is a directory

C:\>isdir \
is a directory

C:\>isdir \\ninja\SharedDocs\cpu-z
is a directory

C:\>isdir \\ninja\SharedDocs\cpu-z\cpuz.ini
not a directory
link|improve this answer
feedback

Based on this titled "How can a batch file test existence of a directory" its "not entirely reliable".

BUT i just tested this:

@echo off
IF EXIST d:%1\NUL goto print
ECHO not dir
pause
exit
:print
ECHO It's a directory
pause

and it seems to work

link|improve this answer
Reading the article "unreliable" means that it failed on Pathworks, Novell, DR-DOS and OS/2 which I doubt will be a problem for most people. – Dave Webb Sep 26 '08 at 12:46
hence "not entirely reliable" – Roman M Sep 26 '08 at 12:54
feedback

I use this:

if not [%1] == [] (
  pushd %~dpn1 2> nul
  if errorlevel == 1 pushd %~dp1
)
link|improve this answer
feedback

This works perfectly

if exist "%~1\" echo Directory

we need to use %~1 to remove quotes from %1, and add a backslash at end. Then put thw whole into qutes again.

link|improve this answer
Thanks for this neat solution. – Luc Hermitte Feb 9 at 14:51
feedback

One issue with using %%~si\NUL method is that there is the chance that it guesses wrong. Its possible to have a filename shorten to the wrong file. I don't think %%~si resolves the 8.3 filename, but guesses it, but using string manipulation to shorten the filepath. I believe if you have simuliar file paths it may not work.

An alternative method:

dir /AD %F% 2>&1 | findstr /C:"Not Found">NUL:&&(goto IsFile)||(goto IsDir) :IsFile echo %F% is a file goto done :IsDir echo %F% is a directory goto done :done

You can replace (goto IsFile)||(goto IsDir) with other batch commands: (echo Is a File)||(echo is a Directory)

link|improve this answer
feedback

Under Windows 7 and XP, I can't get it to tell files vs. dirs on mapped drives. The following script:

@echo off
if exist c:\temp\data.csv echo data.csv is a file
if exist c:\temp\data.csv\ echo data.csv is a directory
if exist c:\temp\data.csv\nul echo data.csv is a directory
if exist k:\temp\nonexistent.txt echo nonexistent.txt is a file
if exist k:\temp\something.txt echo something.txt is a file
if exist k:\temp\something.txt\ echo something.txt is a directory
if exist k:\temp\something.txt\nul echo something.txt is a directory

produces:

data.csv is a file
something.txt is a file
something.txt is a directory
something.txt is a directory

So beware if your script might be fed a mapped or UNC path. The pushd solution below seems to be the most foolproof.

link|improve this answer
1  
See also the solution from @batchman61 which avoids this issue by checking attributes. – jdigital Apr 18 at 21:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.