user29573453
user29573453

Reputation: 1

typical implementation of read/write permissions in file reading code

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

Answers (0)

Related Questions