What is a filesystem API?

0

I know what an API is (Application Programming Interface) but was wondering if someone could explain what a "filesystem API" is. Thank you

Kaitlyn Mcmordie

Posted 2011-10-27T07:53:26.493

Reputation: 699

Question was closed 2011-10-27T19:11:38.657

You know what an API is, but do you know what a "filesystem" is? – m0skit0 – 2011-10-27T10:08:07.920

Answers

5

It's a Application Programming Interface that lets you talk to the file sytem kernel code of your Operating System. This way you can do things like reading and writing files, as well as setting their properties.

Preet Sangha

Posted 2011-10-27T07:53:26.493

Reputation: 1 126

3

An API for enumerating files and directories, as well as creating, reading, writing and deleting files, reading and modifying file attributes and security descriptors.

Robert

Posted 2011-10-27T07:53:26.493

Reputation: 4 857