1 / 22

Files

Files. Open File. FILE  fopen (const char  filename , const char  mode) כאשר : filename : הינו מצביע למחרוזת תווים שהינה שם הקובץ אותו רוצים לפתוח ( יש לציין מסלול מלא ביחס למיקום התוכנית) . mode : הינו מצביע למחרוזת תווים אשר מציינת את מטרת פתיחת הקובץ . האופציות הן :

xiu
Download Presentation

Files

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Files Department of Computer Science-BGU

  2. Open File FILEfopen(const char filename , const char mode) כאשר : filename : הינו מצביע למחרוזת תווים שהינה שם הקובץ אותו רוצים לפתוח ( יש לציין מסלול מלא ביחס למיקום התוכנית) . • mode : הינו מצביע למחרוזת תווים אשר מציינת את מטרת פתיחת הקובץ . האופציות הן : "r" - פתיחת קובץ טקסט לקריאה. "w" - פתיחת קובץ טקסט לכתיבה. "a" - פתיחת קובץ טקסט להוספה, בסופו של הקובץ. Department of Computer Science-BGU

  3. Open File (cont.) • במידה והפונקציה fopen() הצליחה בפתיחת הקובץ יוחזר מצביע לקובץ, אחרת יוחזר NULL . • מספר נקודות : • 1)במידה ונפתח לכתיבה או הוספה, קובץ שלא קיים, יווצר קובץ בשם זה. • 2)במידה ונפתח לכתיבה קובץ שקיים, הכתיבה לקובץ זה תמחק את הקיים (overwrite). • 3)במידה ונפתח לקריאה קובץ שלא קיים או ללא הרשאה מתאימה, הפונקציה תחזיר NULL. • כפי שניתן לראות הפונקציה fopen() מחזירה מצביע לקובץ שאיתו אנו רוצים לעבוד. בכדי לשמור כתובת זו נגדיר משתנה מטיפוס FILE . • אם הפונקציה תחזיר למשתנה זה NULL סימן שהפתיחה לא הצליחה ולכן אין טעם להמשיך במהלך ביצוע התוכנית. Department of Computer Science-BGU

  4. Example לדוגמא, פתיחת הקובץ "in.dat" לקריאה : FILE fin ;  fin=fopen(in.dat , r); if( fin==NULL) { printf(Error in opening file %s\n, in.dat) ; exit(1) ; } הסבר : 1) ראשית, הצהרנו על fin כמצביע לקובץ. 2) קריאה ל - fopen() עם שם הקובץ אותו אנו רוצים לפתוח באופן פתיחה "r" , כלומר לקריאה. 3) לאחר הקריאה לפונקציה fopen() בדקנו אם הקריאה נכשלה, אם כן מודפסת הודעה מתאימה ומתבצעת קריאה לפונקציה exit() . כאשר נהוג להחזיר 1 כמציין סיום לא נורמלי של התוכנית. Department of Computer Science-BGU

  5. סגירת קובץ • בסיום השימוש בקובץ או עם סיום התוכנית חייבים לסגור את הקבצים שפתחנו. אם לא נעשה זאת, חלק מהמידע שכתבנו לקובץ עלול להיאבד. לצורך כך קיימת פונקצית הספרייה fclose() אשר אב הטיפוס שלה מוגדר גם כן ב - stdio.h והוא : int fclose( FILE ) Department of Computer Science-BGU

  6. Character in file Get a character intfgetc( FILE *stream ); Each of these functions returns the character read. To indicate a read error or end-of-file condition, fgetc and getchar return EOF. Put a character intfputc( int c, FILE *stream ); Department of Computer Science-BGU

  7. Example Write program that uses fgetc and fputc to read words from the input file and place them into the output file with one space a separator. The maximal word size is 80 characters. Department of Computer Science-BGU

  8. Solution  #include <stdio.h> #include <string.h> #include <stdlib.h> #define MAX 80 void main (){ FILE *source, *result; char string [MAX+1]; int ch, i=0; if((source=fopen("source.txt","r"))==NULL{ printf("Can't open the file\n"); exit(1); } if((result= fopen("result.txt","w"))==NULL){ printf("Can't open the file\n"); exit(1); } while((ch = fgetc(source))!=EOF) if( ch!=' ') string[i++]=ch; else if(i) { string[i]='\0'; for(i=0; string[i]; i++) fputc(string[i],result); fputc(' ',result); i=0; } if(i) { string[i]='\0'; for(i=0; string[i]; i++) fputc(string[i], result); } fclose(source); fclose(result); } Department of Computer Science-BGU

  9. String in file Get a string char *fgets( char *string, int n, FILE *stream ); Put a string int fputs( char *string, FILE *stream ); Department of Computer Science-BGU

  10. Properties of fgets The fgets function reads characters from the current stream position to and including the first newline character, to the end of stream, or until the number of characters read is equal to n-1 , whichever comes first. The result stored in string is appended with a NULL character. The newline character, if read, is included in the string. Department of Computer Science-BGU

  11. Example • Write program that uses fgets to read lines from the input file. Then the program uses fputs to put words into the output file retaining one space between the words. • The maximal line size is 80 characters. Department of Computer Science-BGU

  12. Solution while(fgets(string,MAX+1,source)) { save=string; while(*(save)){ if(mode) { if(*(save)==' ') mode=0; save++; } else if(*(save)!=' ') { mode=1; save++; } else strcpy(save,save+1); fputs(string,result); } fclose(source); fclose(result); } #include <stdio.h> #include <string.h> #define MAX 80 void main(){ FILE *source, *result; char string [MAX+1]; char *save; int i=0, mode=1; if((source= fopen("source.txt","r"))==NULL){ printf("Can't open the file\n"); exit(1); } if((result= fopen("result.txt","w"))==NULL) { printf("Can't open the file\n"); exit(1); } Department of Computer Science-BGU

  13. Formatted Input/Output • int fscanf( FILE *stream, const char *format [, argument ]... ); • int fprintf( FILE *stream, const char *format [, argument ]...); Department of Computer Science-BGU

  14. Example • Write program that uses fscanf and fprintf to read words from the input file and places them into the output file with one space a separator. • The maximal word size is 80 characters. Department of Computer Science-BGU

  15. Solution #include <stdio.h> #include <stdlib.h> #define MAX 80 void main(){ FILE *source, *result; char string [MAX+1]; if(((source=fopen("source.txt","r"))==NULL) || ((result=fopen("result.txt","w"))==NULL)) { printf("Can't open the file\n"); exit(1); } while((fscanf(source,"%s", string))!=EOF) fprintf(result,"%s ",string); fclose(source); fclose(result); } Department of Computer Science-BGU

  16. fscanf - format specification Fields • A format specification has the following form: %[*] [width] type • If the first character in the set is a caret (^), the effect is reversed: The input field is read up to the first character that does appear in the rest of the character set. • For example: fscanf( ptr, "%20[^#]%9d%*c", name, &id); • the function fscanf reads 20 characters, or till letter (‘#') , or till newline from the input stream and stores them in field name, then it reads the next 9 characters and converts them into integer id, then it reads one symbol which is not stored. Department of Computer Science-BGU

  17. Example 1 כל הקבצים שבשאלה מכילים נתוני המבחנים של הסמסטר , עבור כל סטודנט שורה אחת שמכילה את הפרטים הבאים: • שם הסטודנט (עד 20 תווים) • מספר ת.ז. (9 תווים) • קוד הקורס (4 ספרות) • ציון בקורס (3 ספרות) • קוד הקורס (4 ספרות) • ציון בקורס (3 ספרות).....(לפי מספר הקורסים שהסטודנט נבחן בהם) הקבצים מסודרים לפי מספר ת.ז. בסדר עולה ובכל שורה הקורסים ממוינים בסדר עולה. Department of Computer Science-BGU

  18. Example 1 • כתוב פונקציה final שמקבלת כארגומנטים שלושה מצביעים לקבצים: מצביע לקובץ קיים של ציוני מועד א', מצביע לקובץ קיים של ציוני מועד ב', ומצביע לקובץ חדש של הציונים סופיים. • הפונקציה מעתיקה לקובץ החדש את הציונים הסופיים בכל הקורסים שהסטודנטים נבחנו לפי הכללים הידועים לכם שסטודנט יכול להבחן בקורס מסוים במועד אחד בלבד(א' או ב') או בשני מועדים במקרה הזה הציון הסופי בקורס הוא הציון של מועד ב'. • הגבלה: אין לקרוא קובץ יותר מפעם אחת. • אין להעתיק קובץ למבנה נתונים אחר (מערך דינמי וכו') Department of Computer Science-BGU

  19. Example 1 void final(FILE* f1, FILE* f2, FILE* f3){ int flag1, flag2, flag11, flag22,course1,course2,grade1,grade2; char name1[21],name2[21],id1[10],id2[10],string1[200],string2[200]; char *s1,*s2; flag1=fscanf(f1,"%[^0-9]%9s%s*c",name1,id1,string1);s1=string1; flag2=fscanf(f2,"%[^0-9]%9s%s*c",name2,id2,string2);s2=string2; while (flag1 != EOF || flag2 != EOF){ if(flag2==EOF || flag1!=EOF && strcmp(id1, id2)<0){ fprintf(f3,"%s%s%s\n",name1,id1,string1); flag1=fscanf(f1,"%[^0-9]%9s%s*c",name1,id1,string1); s1=string1; } else Department of Computer Science-BGU

  20. Example 1 if(flag1==EOF || flag2!=EOF && strcmp(id1, id2)>0){ fprintf(f3,"%s%s%s\n",name2,id2,string2); flag2=fscanf(f2,"%[^0-9]%9s%s%*c",name2,id2,string2); s2=string2; }else{ fprintf(f3,"%s%s",name2,id2); flag11=sscanf(string1,"%4d%3d",&course1,&grade1); flag22=sscanf(string2,"%4d%3d",&course2,&grade2); while (flag11 == 2 || flag22 == 2){ if(flag22<2 || flag11==2 && course1<course2){ fprintf(f3,"%4d%3d",course1,grade1); s1 +=7; flag11=sscanf(s1,"%4d%3d",&course1,&grade1); }else if(flag11<2 || flag22==2 && course1>course2){ fprintf(f3,"%4d%3d",course2,grade2); s2 +=7; flag22=sscanf(s2,"%4d%3d",&course2,&grade2); }else{ fprintf(f3,"%4d%3d",course2,grade2); s1 += 7; flag11=sscanf(s1,"%4d%3d",&course1,&grade1); s2 += 7; flag22=sscanf(s2,"%4d%3d",&course2,&grade2); } } fprintf(f3,"\n"); flag1=fscanf(f1,"%[^0-9]%9s%s*c",name1,id1,string1);s1=string1; flag2=fscanf(f2,"%[^0-9]%9s%s*c",name2,id2,string2);s2=string2; } } /// end of while}void main(){ FILE *f1, *f2, *f3; f1=fopen("first.dat","r"); f2=fopen("second.dat","r"); f3=fopen("final.dat","w"); if(!f1 || !f2 || !f3){ printf("Can't open file!\n"); exit(1); } final(f1,f2,f3); fclose(f1); fclose(f2); fclose(f3);}   Department of Computer Science-BGU

  21. Example 1 Department of Computer Science-BGU

  22. Department of Computer Science-BGU

More Related