- 论坛徽章:
- 0
|
代码如下:
int dcn_save_local(char *path_handin,char *filename_handin,struct dcn_local_info info)
{
char *info_finished = "--- info finished ---";
//char *path_handin = path;
char fullpath[100];
memset(fullpath,0x0,sizeof(fullpath));
strcat(fullpath,path_handin);
strcat(fullpath,filename_handin);
printf(" the fullpath is %s\n",fullpath);
FILE *f = fopen(fullpath,"w+");
if(f == NULL){
perror("create file to save local data failuer!");
exit(1);
}
fwrite(&(info.pid),sizeof(pid_t),1,f);
fwrite(&(info.sendid_stored),sizeof(struct msgid_send_type),1,f);
fwrite(&(info.msg_item_sendid),sizeof(long),1,f);
fwrite(&(info.msg_item_recvid),sizeof(long),1,f);
fwrite(info_finished,strlen(info_finished)+1,1,f);
fclose(f);
fflush(f);
return 0;
} |
|