I'm creating a batch file to make multiple directories from a list in a text file however after the directory is listed sometimes a filename is as well. Is there an easy way to have it ignore all data after the last \ on a line?
|
feedback
|
|
I might suggest that DOS batch isn't the right tool for this job, because it doesn't have built-in facilities for string manipulation like this would need. If you have Perl available, you can do something like this:
| |||||||
feedback
|
|
You can use something like this:
The result will be | |||||
feedback
|