试试下面的代码:
dim tmp() as byte
open 源文件 for binary as 1
redim tmp(lof(1)) as byte
get 1,1,tmp
close 1
open 目标文件 for binary as 1
put 1,1,tmp
close 1