发新话题
打印

读取二进制文件的问题

Open "文件名" For Binary As #1
Dim a() As Byte
ReDim a(LOF(1))
Get #1, , a
Close #1

这时字节形数组就是文件的内容

TOP

发新话题