v1.3.0
File IO Stats
Added functions for retrieving total number of bytes read and written by a process.
Details
Windows:
Using GetProcessIoCounters() from <WinBase.h> with PROCESS_QUERY_LIMITED_INFORMATION permissions.
Linux:
Using the /proc/[pid]/io filesystem, which may require permissions.
MacOS:
Using proc_pid_rusage() from <libproc.h>.