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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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 :-) |
||||
|
If for whatever reason you can't use FOR (no Command Extensions etc) you might be able to get away with the ..\ hack:
|
|||
|
|