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" }
|
|
|
You can do it like so:
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:
The (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 |
|||||||||||
|
|
This seems to work:
Seems too easy, and there's a niggle at the back of my brain that says not to do it. Anyone know why not? |
|||||||||||||
|
|
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
|
|||||
|
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:
This DID NOT work:
This DOES work (for me):
[[Look right here !!!! ]]
This works, but it's sort of silly, because the dot already implies i am in a directory:
|
|||||||
|
|
Further to my previous offering, I find this also works:
No quotes around %1 are needed because the caller will supply them. This saves one entire keystroke over my answer of a year ago ;-) |
||||
|
|
This works perfectly
we need to use %~1 to remove quotes from %1, and add a backslash at end. Then put thw whole into qutes again. |
|||||
|
|
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.
Sample output with the above saved as "isdir.bat":
|
|||||
|
|
I use this:
|
|||
|
|
|
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) |
|||
|
|
A very simple way is to check if the child exists. If a child does not have any child, the
You may have some false negative if you don't have sufficient access right (I have not tested it). |
||||
|
|
|
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. |
|||||
|
|
Based on this article titled "How can a batch file test existence of a directory" it's "not entirely reliable". BUT I just tested this:
and it seems to work |
|||||||||
|
|
This is the code that I use in my BATCH files
``` |
|||
|
|
|
Can't we just test with this :
It seems to work for me. |
|||
|
|