斑竹及各位:我用的是ZLG/FS,想要用ZLG/FS的读写函数打开一个事先拷贝到SD卡上的.html网页文件,并把这个文件的内容复制到一个数组里,大家帮看看程序这样编对吗?程序如下:
char *FileName = "a:单片机.html"; uint8 WritFileData[430]; char buf1[4]; char buf[30]; HANDLE FHandle;
strcpy(buf1, "rw"); strcpy(buf, FileName); FHandle = OSFileOpen(buf, buf1); OSFileRead(WritFileData,430,FHandle); OSFileClose(FHandle);
|