Search Results

11
votes

DOS batch command(s) to read first line from text file

Again adding to other answers, and combining them into a utility that mimics the gnu head utility, which I named "head.bat": @echo off setlocal enabledelayedexpansion if [%1] == [] …
1
vote

How to check if directory exists in %PATH%?

I took your implementation using the for loop and extended it into something that iterates through all elements of the path. Each iteration of the for loop removes the first element of th …
1
vote

How do I test if a file is a directory in a Batch script?

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. …