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?