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: 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? |
|||
|
|
|
|
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":
|
||
|
|
|
|
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:
|
||
|
|
|
Based on this titled "How can a batch file test existence of a directory" its "not entirely reliable". BUT i just tested this:
and it seems to work |
|||