Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to check if a file exists using AWK in Windows. I found a solution that works nice for text files, but not for movie files:

res = (getline < "test.txt")
if (res==1) print "File exists!"

However, if I use getline to read from a movie file, awk hangs for a long while. Can I read just a few bytes from the file using awk or is there any other way to check if the file exists?

share|improve this question
My bad, it doesn't hang, it works nicely with any kind of file. You might delete this question or leave it be for having the answer for a basic question. – Bear Bear Dec 28 '12 at 3:18

closed as too localized by perreal, talonmies, Anoop Vaidya, Lars Kotthoff, Anand Dec 28 '12 at 8:28

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Best practice suggests that you should avoid calls to the getline() function. A better way would be to use the FILENAME variable, like this:

 awk 'FILENAME == "movie.avi" { print "File exists!" }' *.avi
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.