Тёмный

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

Jacob Sorber
Подписаться 165 тыс.
Просмотров 102 тыс.
50% 1

Опубликовано:

 

1 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 82   
@thewelder3538
@thewelder3538 2 года назад
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.
@SpyderBDM
@SpyderBDM 3 года назад
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 RU-vid 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 года назад
Hi Beau. Good to see you on here. I'm doing well. I hope life after my OS class has been kind.
@dykens7758
@dykens7758 6 лет назад
All this time I had been using open(), write() and read() for no good reason ahah. Looking forward to memory mapped IO video, you are really helping me get better at system programming and C.
@JacobSorber
@JacobSorber 6 лет назад
Glad I could help.
@dengtianshuo
@dengtianshuo 2 года назад
Amazing channel and videos! Very rare to find videos that talk about low level stuff. Please keep it going!
@donha475
@donha475 4 года назад
Thank you for such a great explanation - really appreciate it ;)
@pseudopseudo3679
@pseudopseudo3679 3 года назад
honestly one of the greatest programming channels
@vic91020
@vic91020 4 года назад
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?
@brutexx2
@brutexx2 2 года назад
Thank you, that was a very quick and good video. Exactly what I needed to refresh my memory.
@diodedavid9229
@diodedavid9229 3 года назад
btw if you want to write a sentence into a text file it is fgets() followed by fputs()
@rithybin4129
@rithybin4129 6 лет назад
សួស្តី​​ 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 лет назад
@@rithybin4129 Ok. Got it. I'll see what I can do. Thanks.
@minRef
@minRef 5 лет назад
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 5 лет назад
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 5 лет назад
@@JacobSorber Thanks! That makes more sense.
@bonbonpony
@bonbonpony 5 лет назад
@@JacobSorber So much for the standards, I guess? :q
@JacobSorber
@JacobSorber 5 лет назад
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 .
@dullyvampir83
@dullyvampir83 Год назад
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 9 месяцев назад
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.
@konstantinrebrov675
@konstantinrebrov675 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 9 месяцев назад
sleep() suspends the process till the time expires or a signal occurs. It won't flush buffers managed by stdio.
@bonbonpony
@bonbonpony 5 лет назад
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 лет назад
Yeah, in C11 you can use the "wx" mode with fopen and that should do what you want.
@biconomy
@biconomy 4 года назад
nice job I am continuously watching all your videos
@JacobSorber
@JacobSorber 4 года назад
Wow, thanks
@GrozaRobertGenaro
@GrozaRobertGenaro 4 года назад
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 года назад
If you're concerned about portability, I would probably use fopen.
@Non-residential_villager
@Non-residential_villager 3 года назад
good information ! watch at slower speed for better understanding.
@WILL-zr2nw
@WILL-zr2nw 3 года назад
thanks for clear explanation, still watch at 2021
@LARathbone
@LARathbone 4 года назад
Thank you very much. Very clear and helpful.
@rajcodes100
@rajcodes100 4 года назад
Thanks for this explanation - really clear now.
@JacobSorber
@JacobSorber 4 года назад
You are welcome! Glad it helped.
@26487913
@26487913 2 года назад
0:27 there is one file you cannot keep straight, the homofile :'D
@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?
@guyarbel2387
@guyarbel2387 3 года назад
wow. such a great channel. thanks :)
@JacobSorber
@JacobSorber 3 года назад
Thanks, and welcome! Glad you found it.
@messengerofiexist2139
@messengerofiexist2139 3 года назад
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 2 года назад
only tangentially related, but you can use xxd to include a file directly with the -i argument
@rljpdx
@rljpdx Год назад
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!
@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
@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()?
@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?
@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)
@Christian-qh5zu
@Christian-qh5zu 2 года назад
Does anyone know what vscode theme he's using? It's very nice
@supernovaw39
@supernovaw39 Год назад
I'm pretty sure it's Atom in this video, not VS Code
@thecracker1082
@thecracker1082 3 года назад
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?
@visalbotrchan1431
@visalbotrchan1431 6 лет назад
Why do you have Khmer and English Dictionary on your shelf ?
@JacobSorber
@JacobSorber 6 лет назад
ចេះមកពីរៀន។ ខ្ញុំបានរោះនៅភ្នំពេញ កាលខ្ញុំនៅក្មេង I don't find a lot of opportunities to use Khmer these days, but I try not to lose it. ចេះខ្មែរេទ?
@visalbotrchan1431
@visalbotrchan1431 6 лет назад
បាទបង។ ភាសារខែ្មរជាភាសារកំណើតរបស់ខ្ញុំ ហើយ ខ្ញុំក៏ធ្លាប់បានរស់នៅទីក្រុងភ្នំពេញដែរ។ 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 лет назад
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.
@ianbolfa
@ianbolfa 2 года назад
All the cool kids use buffered I/O 😎 Great video!
@xbz24
@xbz24 Год назад
Back when atom was a thing
@theomiddehghan
@theomiddehghan 3 года назад
The tutorial, very good! Dress shirt, no!
@JacobSorber
@JacobSorber 3 года назад
Are you opposed to dress shirts in general, or just the sad fit of the one in this video? 🤔
@theomiddehghan
@theomiddehghan 3 года назад
​@@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:)
@v1rusfalcon198
@v1rusfalcon198 2 года назад
will you ever make videos on microcontrollers? like the esp32?
@Immorpher
@Immorpher 3 года назад
Nice little tidbit on simple "read" for binary. All the examples I come across are for text files.
@Awwe12675
@Awwe12675 2 года назад
Open faster than fopen
@davidlima1525
@davidlima1525 Год назад
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.
@khomo12
@khomo12 Месяц назад
Thank you!👍👍👍
@crptc5707
@crptc5707 4 года назад
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 9 месяцев назад
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.
@Sparagas
@Sparagas 2 года назад
Does anyone know what f stands in fopen?
@ironmonkey1990
@ironmonkey1990 5 месяцев назад
Thank you!
@Sinan997
@Sinan997 Год назад
awesome
@samarthtandale9121
@samarthtandale9121 Год назад
Amazing !!! ... Just amazing 🔥
@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.
@alacastersoi8265
@alacastersoi8265 3 года назад
fNAME = formatted NAMES
@saisrisai9649
@saisrisai9649 Год назад
Thank you!!!!
@anon89461
@anon89461 4 года назад
THANKS SO F* MUCH
@alantao3810
@alantao3810 4 года назад
10/10 video
@abhishekmitra5445
@abhishekmitra5445 6 лет назад
Please add more video,, We keep supporting you,, Will be grateful if you add more frequent videos
@JacobSorber
@JacobSorber 6 лет назад
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 лет назад
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.
Далее
File Access Basics | C Programming Tutorial
24:05
Просмотров 92 тыс.
🦊🔥
00:16
Просмотров 308 тыс.
How processes get more memory. (mmap, brk)
6:50
Просмотров 72 тыс.
System Programming with C - Opening and Reading Files
14:06
How does fork work with open files?
13:12
Просмотров 10 тыс.
why do header files even exist?
10:53
Просмотров 410 тыс.
The 3 Laws of Writing Readable Code
5:28
Просмотров 594 тыс.
Reading and Writing from Binary Files in C!
20:26
Просмотров 11 тыс.
Coding Adventure: Rendering Text
1:10:54
Просмотров 708 тыс.
The Art of Code - Dylan Beattie
1:00:49
Просмотров 4,7 млн
🦊🔥
00:16
Просмотров 308 тыс.