1 / 21

Files

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

vivien
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 1 Write program that uses fgetc and fputc to copy from the input file “source.txt” to the output file result.txt”. Department of Computer Science-BGU

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

  9. 2Example 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

  10. Solution 2  #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

  11. Results 2 “source.txt” ahd aldja jdod qjjdjkj kkjl;;D JDJ JKJKJ k kkklljl hhhhfa;; jj kk “result.txt” ahd aldja jdod qjjdjkj kkjl;;D JDJ JKJKJ k kkklljl hhhhfa;; jj kk Department of Computer Science-BGU

  12. 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

  13. Properties of fgets The fgets function reads characters from the current stream position to (whichever comes first): • And including the first newline character. • The end of stream. • Until the number of characters read is equal to n-1 . 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

  14. 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

  15. 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

  16. Results “source.txt” ahd aldja jdod qjjdjkj kkjl;;D JDJ JKJKJ k kkklljl hhhhfa;; jj kk “result.txt” ahd aldja jdod qjjdjkj kkjl;;D JDJ JKJKJ k kkklljl hhhhfa;; jj kk Department of Computer Science-BGU

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

  18. 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

  19. Solution #include <stdio.h> #include <stdlib.h> void main(){ FILE *source, *result; char string [81]; 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

  20. Problems using fscanf() • When we use this function : fscanf(“%20s%9d”, name, &id); • We intend to read from the file 20 letters for a first and second names , followed by 9 digits for a integer number. • The problem is that fscanf() stops on the first whitespace (blank, newline and tab). • We are not sure how many letters were red from the file ( 20 ??). Department of Computer Science-BGU

  21. 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

More Related