Reputation: 1
Every language I've done some form of file handling in has some form of read/write specification when interacting with a file, something like
open_file(file_name, read=true)
Is this typically implemented in the library? Or is there some simple operating system support that library devs can leverage?
I looked around the python file handling docs but I didn't see any clear specification of how read/write worked.
Upvotes: 0
Views: 27