Lecture 4 - More on File I/O Flashcards

1
Q

access()

A
  • int access(char *file_name, int mode);
  • used to check that a file can be opened with the specified mode
  • modes: R_OK (check for read access), W_OK (check for write access), F_OK (check for existence)
  • returns zero on success
  • MUST #include <unistd.h> for access</unistd.h>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

feof()

A
  • when we’re reading from a file, we need to determine when we’ve hit the end
  • returns nonzero if we have hit EOF
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

how to check if you ran out of disk space when writing a file

A
  • ferror() looks for various errors (including EOF)
  • call it after every read or write to figure out if something bad happened
  • If you can correct it, use clearerr() to clear the file pointer’s internal error flag
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

%[]

A
  • used in scanf() to match and store a set of character from input into a string
  • put list of characters that it should accept in-between (ex. 0-9, A-Z, 0-9A-z, %29s)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

fscanf() return values

A
  • will return the number of variables it successfully scanned or -1 if we’ve hit the end of file
  • may return 0 if there’s a blank line at the end of the file
  • to catch any error, check if the return value is less than the number of variables scanned
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

ftell()

A
  • long ftell (FILE *stream)
  • returns the current file position indicator of a file stream (how far you’ve read/written
  • returns current position in the file in bytes or -1L if an error occurs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

fseek()

A
  • int fseek(FILE *stram, long offset, int whence);
  • a pointer to a FILE object that identifies the file stream
  • the offset (number of bytes) to move to the file (can be negative)
  • returns 0 if successful, -1 if there’s an error
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

fgets()

A
  • char *fgets(char *str, int n, FILE *stream);
  • used to read a line of text from a file or standard input
  • *str is pointer where the read string will be stored
  • n is the max num characters to read including \0
  • stream is the stream to read from
  • returns str on success, NULL on failure
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

fputs()

A
  • int fputs(const char *str, FILE *stream);
  • functions that write a string to a file or stdout
  • str is string to be written, the stream is what it is written to
  • returns non negative number on success, -1 on failure
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

assert()

A
  • used in debugging to catch logical error by checking conditions at runtime
  • if condition is false, assert() prints an error message and terminates the program
How well did you know this?
1
Not at all
2
3
4
5
Perfectly