Reading and Writing Files in C, two ways (fopen vs. open)

Поделиться
HTML-код
  • Опубликовано: 8 янв 2025

Комментарии • 85

  • @pseudopseudo3679
    @pseudopseudo3679 4 года назад +7

    honestly one of the greatest programming channels

  • @dengtianshuo
    @dengtianshuo 2 года назад +5

    Amazing channel and videos! Very rare to find videos that talk about low level stuff. Please keep it going!

  • @thewelder3538
    @thewelder3538 2 года назад +8

    Just wanted to add my input here. Sure, fopen() buffers its I/O, but you can disable that buffering. Secondly, as you mentioned, open is a Posix system call, but that wouldn't work on something like Windows which isn't Posix based. The Win32 API uses CreateFile() or CreateFile2() depending on how old your application is, and both of those API calls offer way more flexability than open() or fopen() does. They even support things like async Overlapped I/O. You can write to named pipes, devices, or just about anything. Even if you are exclusively targeting Posix platforms, you'd still probably use fopen() purely for the portability and just disable the buffering.
    Still, it's a nice factoid that coders should know, so it's a good video.

  • @biconomy
    @biconomy 4 года назад +3

    nice job
    I am continuously watching all your videos

  • @brutexx2
    @brutexx2 2 года назад +2

    Thank you, that was a very quick and good video. Exactly what I needed to refresh my memory.

  • @874D8
    @874D8 2 месяца назад

    This is a great video!
    Also it is not just a factoid that fopen and open are inherently different. Open is also more simple and returns just a file descriptor. The video does not go into what is inside the FILE type and the convenient functions which can be used with fopen like fseek, ftell and more... Thank you for the fun intro!

  • @WILL-zr2nw
    @WILL-zr2nw 4 года назад +1

    thanks for clear explanation, still watch at 2021

  • @donha475
    @donha475 4 года назад +6

    Thank you for such a great explanation - really appreciate it ;)

  • @contentwarningcity
    @contentwarningcity 3 года назад +5

    Hey, Prof. Sorber! Beau’s the name. You taught one of my CompSci classes back in 2016 or 2017. I was working on a program for my company, perusing through RUclips for some ideas on how to tackle part of it, and came across your channel. What are the chances? If I would’ve known you’d be making these videos, I could’ve saved $90,000 🤷🏼‍♂️. In all seriousness, I hope you’re doing well. Thank you for sharing the knowledge, and good luck on your current and future endeavors. Go Tigers!

    • @JacobSorber
      @JacobSorber  3 года назад +7

      Hi Beau. Good to see you on here. I'm doing well. I hope life after my OS class has been kind.

  • @Non-residential_villager
    @Non-residential_villager 4 года назад +1

    good information ! watch at slower speed for better understanding.

  • @rajcodes100
    @rajcodes100 4 года назад +3

    Thanks for this explanation - really clear now.

    • @JacobSorber
      @JacobSorber  4 года назад +2

      You are welcome! Glad it helped.

  • @diodedavid9229
    @diodedavid9229 3 года назад +2

    btw if you want to write a sentence into a text file it is fgets() followed by fputs()

  • @rithybin4129
    @rithybin4129 6 лет назад +4

    សួស្តី​​ Jacob, "ចេះមកពីរៀន" nice quote !!! I'm khmer student looking for tutorial on youtube, it seems hard to find good resource to learn the language like C with good explain like this, Can you do more about it ? Thanks

    • @JacobSorber
      @JacobSorber  6 лет назад

      សួស្តី. I definitely plan to keep making videos on C and other topics. Let me know if you have specific requests.

    • @rithybin4129
      @rithybin4129 6 лет назад

      My request is to use C to solving problems, I mean practical, rather than learning the basic, thank again

    • @JacobSorber
      @JacobSorber  6 лет назад +1

      @@rithybin4129 Ok. Got it. I'll see what I can do. Thanks.

  • @LARathbone
    @LARathbone 4 года назад +2

    Thank you very much. Very clear and helpful.

  • @guyarbel2387
    @guyarbel2387 4 года назад +3

    wow. such a great channel. thanks :)

    • @JacobSorber
      @JacobSorber  4 года назад +1

      Thanks, and welcome! Glad you found it.

  • @vic91020
    @vic91020 4 года назад +2

    If I'm not wrong, isn't it possible to cancel buffering for FILE structs (fopen)? Also, you can force emptying the buffer with fflush(), if I recall correctly.
    What would be the difference in these cases?

  • @rljpdx
    @rljpdx 2 года назад

    Weapprove of your new program. let's call it the "Emphaticizer." We'll pronounce the 'c' like an 's' to show our clever use and awareness of the write way to speak. Just some small discussions pertaining to 'naming' rights to get out of the way and upon receipt of the check for the 'naming;' rights, we'll show you how to use it, but most importantly, market it. win win!

  • @konstantinrebrov675
    @konstantinrebrov675 4 года назад +3

    Could you please make a video about buffering and output in C/C++? For example if sleep() is put between calling different output functions such as printf(), puts(), etc?

    • @RobBCactive
      @RobBCactive Год назад

      sleep() suspends the process till the time expires or a signal occurs.
      It won't flush buffers managed by stdio.

  • @vinayakd1980
    @vinayakd1980 14 дней назад

    Amazing video as always. You mentioned that fopen is faster than open. However i tried to make 2 filecopy programs, one uses open, close read and write while the other uses fopen, fclose, getc and putc. I find the low level program creates copy of a 2gb file in about 5 seconds while the high level program does the same in about 20 seconds. Am i missing some crucial concept in. My understanding of the process? Thank you so much.

  • @minRef
    @minRef 6 лет назад +10

    Regarding fopen calling open: Page 232 of The C Standard Library 4th edition (the edition corresponding to C89, still the most widespread version) says "...fopen must not call open....". Page 279 has the source code for "fopen.c", and it doesn't look like open() is directly called. Was this changed in later versions or is open() called indirectly further out in the call graph?

    • @JacobSorber
      @JacobSorber  6 лет назад +14

      Good question. To complicate it a bit, there's "open" the system call and "open" the library function. The library function is mostly a wrapper around the system call, but in some libc implementations, it may do more. I looked quickly at a few implementations.
      opensource.apple.com/source/Libc/Libc-167/stdio.subproj/fopen.c
      github.com/freebsd/freebsd/blob/master/lib/libc/stdio/fopen.c
      www.gnu.org/software/libc/
      The apple version calls open directly. Others call an internal version (something like __open or IO_FILE_OPEN...which then calls __open). At the bottom level they're all making a low-level system call asking the kernel to open a file for them. But they don't all follow the same path to get there.
      Hope that helps.

    • @minRef
      @minRef 6 лет назад +3

      @@JacobSorber Thanks! That makes more sense.

    • @bonbonpony
      @bonbonpony 5 лет назад +2

      @@JacobSorber So much for the standards, I guess? :q

    • @JacobSorber
      @JacobSorber  5 лет назад +3

      Yeah, I guess. Standards have always been an imperfect exercise. And, this particular deviation seems unlikely to cause much harm.

    • @edwardmacnab354
      @edwardmacnab354 2 года назад

      @@bonbonpony Standards tell you what should happen not how to get to what should happen because that would prevent somebody from building a better mousetrap . Take Unix, Linux , and Posix as an example .

  • @Anduuu077
    @Anduuu077 Месяц назад

    very good video!

  • @messengerofiexist2139
    @messengerofiexist2139 3 года назад +1

    Would be nice to have a program/project where using MD5 or crc32 or sha1 or sha256...etc, which you use on a file with fopen, Open, fread, fwrite, and any other file access methods, to see how they treat files in different ways.
    A program like hex editors, example xxd, reading the binary of the file vs reading the contents and presenting it in decimal or octal; being just more ways to play with files.

    • @onions8370
      @onions8370 3 года назад +1

      only tangentially related, but you can use xxd to include a file directly with the -i argument

  • @dullyvampir83
    @dullyvampir83 Год назад +1

    Couldn't you also make open faster if you know exactly how large the file is and you completely buffer it with open? Could it maybe outperform fopen?

    • @RobBCactive
      @RobBCactive Год назад

      It probably won't help because of virtual memory, reusing a buffer allocates less and it will likely be hot data available in cache.
      Open is also allowed to return fewer bytes than requested so large files, will probably be fetched in chunks anyway.
      A better way to open a large structured file is mmap(2), then the VM manages the i/o and the program can treat it as in memory structures and arrays.
      Very often you only need to access parts of the file, so only reading the pages you need, rather than buffering the whole file and copying it into memory structures is far more efficient.

  • @zhouxiao3344
    @zhouxiao3344 Год назад

    If I called open() and fopen() with the fd from the open(). When I am done, is it OK to only call close() instead of calling fclose()?

  • @Immorpher
    @Immorpher 4 года назад

    Nice little tidbit on simple "read" for binary. All the examples I come across are for text files.

  • @samarthtandale9121
    @samarthtandale9121 2 года назад

    Amazing !!! ... Just amazing 🔥

  • @abhishekmitra5445
    @abhishekmitra5445 6 лет назад

    Please add more video,, We keep supporting you,, Will be grateful if you add more frequent videos

    • @JacobSorber
      @JacobSorber  6 лет назад +1

      Thanks! I add videos as frequently as I can. There is no shortage of topics, just a shortage of time to make videos.

    • @abhishekmitra5445
      @abhishekmitra5445 6 лет назад

      Yes sir as a postgraduate student of computer science I know there are ample of concepts to discuss,Sir can you please cover the topics system calls like select, poll for I/O multiplexing.
      And one thing did you have any blog sites containing lecture notes for advance concepts in CS, if yes please do share
      Thanks you for your reply

    • @JacobSorber
      @JacobSorber  6 лет назад +2

      I don't have any posted notes or blogs. I'll add select and poll to the list, for a future video. Thanks for the suggestion.

  • @bonbonpony
    @bonbonpony 5 лет назад +2

    Is there any way to open a file with `fopen` for writing, but only if the file doesn't exist yet? (If it exists, it should be detected and returned with error, so that the user could choose another one, instead of overwriting some important file just because its name happened to be the same :q )

    • @JacobSorber
      @JacobSorber  5 лет назад +4

      Yeah, in C11 you can use the "wx" mode with fopen and that should do what you want.

  • @davidlima1525
    @davidlima1525 2 года назад

    Hey, can u please explain what this condition checks for ? I dont really get it.
    (bytes = read(fd_to_read, &c, sizeof(c))) > 0)
    Thanks in advance!

    • @emiiiya
      @emiiiya Год назад

      I'm not exactly sure but it looks like the equivalent of the (c=fgetc(file_to_read)) != EOF. Simply put it checks if there's still data to be read.
      Edit:
      Checked and `read` returns amount of bytes read, so if it returns 0 it means that there is no more data to be read.

  • @GrozaRobertGenaro
    @GrozaRobertGenaro 4 года назад +1

    So I have an exam, im using a mac, should I use open for more control even tho my professor will probably correct it on linux?

    • @JacobSorber
      @JacobSorber  4 года назад +1

      If you're concerned about portability, I would probably use fopen.

  • @gauravnimrani8936
    @gauravnimrani8936 3 года назад

    isnt buffering done by the OS itself ..for example in memory mapped file io a part of file is brought into the memory and after it is modifed then later(according to whatever policy OS follows) it is written to disk.. then why here for every byte modified file is being brought into read written and then same with next byte..in case of open() syscall

  • @thecracker1082
    @thecracker1082 4 года назад

    Is it possible to have the path (filename) like an input. In my case the path to the file must be written by the user of the program. How can I do it?

  • @ianbolfa
    @ianbolfa 2 года назад

    All the cool kids use buffered I/O 😎 Great video!

  • @zytr0x108
    @zytr0x108 2 года назад

    How can fopen be based on open if fopen is part of the C standard and to use open one needs to include a library?

  • @gauravnimrani8936
    @gauravnimrani8936 3 года назад

    i thought that after calling open() syscall , to make the process of reading writing from the files the OS maintains an open-file table so that for reading each byte or working on memory you don't search the directory retreive the fd and then start reading writing..so why is it still taking time.i mean after open.. the file is loaded into the memory (atleast some part)

  • @bsykesbeats
    @bsykesbeats 2 года назад

    I'm confused, does fopen() read the file into memory? Cuz if it doesn't, then of course you wouldn't have to fclose() to avoid leaks, but if it does, then why do I have to fread() to read it into memory if its already in memory?

  • @crptc5707
    @crptc5707 4 года назад +1

    Nice lecture professor! Just a few questions, after open() reads a byte, how does it pass the value to user process after context switch? Secondly, does fopen maintains the buffer? I assume in this case open() would return a string or block instead of one byte, to save context switch overhead? Thanks a lot!

    • @RobBCactive
      @RobBCactive Год назад

      1) The kernel reads from disk or a character device into a buffer, then it uses mapped in process memory and copies to user space.
      2) The stdio library manages the buffer and provides a collection of routines that work together. The filehandle indicates the buffer.
      3) open is a system call, NOT part of stdio so if you ask for 1 char, it returns 1 or fails. If you ask for more, then you may receive less, serial terminals are by default line buffered for instance.

  • @v1rusfalcon198
    @v1rusfalcon198 3 года назад

    will you ever make videos on microcontrollers? like the esp32?

  • @Christian-qh5zu
    @Christian-qh5zu 2 года назад

    Does anyone know what vscode theme he's using? It's very nice

    • @supernovaw39
      @supernovaw39 2 года назад

      I'm pretty sure it's Atom in this video, not VS Code

  • @visalbotrchan1431
    @visalbotrchan1431 6 лет назад +2

    Why do you have Khmer and English Dictionary on your shelf ?

    • @JacobSorber
      @JacobSorber  6 лет назад +1

      ចេះមកពីរៀន។
      ខ្ញុំបានរោះនៅភ្នំពេញ កាលខ្ញុំនៅក្មេង
      I don't find a lot of opportunities to use Khmer these days, but I try not to lose it. ចេះខ្មែរេទ?

    • @visalbotrchan1431
      @visalbotrchan1431 6 лет назад +1

      បាទបង។ ភាសារខែ្មរជាភាសារកំណើតរបស់ខ្ញុំ ហើយ ខ្ញុំក៏ធ្លាប់បានរស់នៅទីក្រុងភ្នំពេញដែរ។
      Currently, I am taking a system programming class in C and find your videos very informative.
      Are there many Cambodian students in your college? There aren't any at my college.

    • @JacobSorber
      @JacobSorber  6 лет назад +1

      I haven't met any Khmer students here, but it's a big student body. So, maybe I just haven't met them yet. Glad you enjoyed the videos.

  • @ironmonkey1990
    @ironmonkey1990 9 месяцев назад

    Thank you!

  • @alantao3810
    @alantao3810 4 года назад

    10/10 video

  • @sayyidalisajjadrizavi7418
    @sayyidalisajjadrizavi7418 4 года назад

    Hi! I am using open("output.txt", O_WRONLY | O_CREAT) but still why do I not have permission to open it in TextEditor without sudo privileges?

    • @JacobSorber
      @JacobSorber  4 года назад

      I'm not sure. I would check your umask, and see what your default permissions are.

  • @saisrisai9649
    @saisrisai9649 2 года назад

    Thank you!!!!

  • @Sparagas
    @Sparagas 2 года назад

    Does anyone know what f stands in fopen?

  • @26487913
    @26487913 2 года назад

    0:27 there is one file you cannot keep straight, the homofile :'D

  • @xbz24
    @xbz24 Год назад

    Back when atom was a thing

  • @Awwe12675
    @Awwe12675 3 года назад

    Open faster than fopen

  • @Sinan997
    @Sinan997 Год назад

    awesome

  • @theomiddehghan
    @theomiddehghan 4 года назад +1

    The tutorial, very good!
    Dress shirt, no!

    • @JacobSorber
      @JacobSorber  4 года назад

      Are you opposed to dress shirts in general, or just the sad fit of the one in this video? 🤔

    • @theomiddehghan
      @theomiddehghan 4 года назад

      ​@@JacobSorber Oh no I'm OK with this type of shirt (even though don't remember the last time I wear one!). You bring energy and excitement to your content but wearing a dress-shirt I guess somehow doesn't fit in the context very well! But the T-shirt fits perfectly:)

  • @anon89461
    @anon89461 4 года назад

    THANKS SO F* MUCH

  • @alacastersoi8265
    @alacastersoi8265 4 года назад

    fNAME = formatted NAMES

  • @khomo12
    @khomo12 5 месяцев назад

    Thank you!👍👍👍