I'd like to get the parent directory of a file from within a .bat file. So, given a variable set to "C:\MyDir\MyFile.txt", I'd like to get "C:\MyDir". In otherwords, the equivalent of dirname() functionality in a typical UNIX environment. Is this possible?
feedback
|
This will set Careful with filenames containing spaces, though. Either they have to be set with surrounding quotes:
or you have to put the quotes around the argument in the
Either method will work, both at the same time won't :-) | |||||
feedback
|
|
If for whatever reason you can't use FOR (no Command Extensions etc) you might be able to get away with the ..\ hack:
| |||
|
feedback
|