What C++ library can I use to check disk quotas on linux?

964 Views Asked by At

Is there an easy to use library that I can use for checking disk quotas? I need to modify a piece of software I have to implement this functionality.

1

There are 1 best solutions below

11
On BEST ANSWER

Can't you just use quotactl?

int quotactl(int cmd, const char *special, int id, caddr_t addr);