Open "KWEST01B.XFD" For Binary As #1
Get #1, , temp$ 'get the whole array
The problem is with the above -- temp$ is a blank 0 byte string of "" by default, so you're getting 0 bytes from your file.
Open "KWEST01B.XFD" For Binary As #1
temp$ = SPACE$(LOF(1)) 'set temp$ to be the size of the file, if you want to get the whole thing at once.
Get #1, , temp$ 'get the whole array