Top "Fstat" questions

Difference between lstat fstat and stat in C

Im writing a school assignment in C to search through a file system for directories, regular files and symlinks. For …

c stat fstat
What are the advantages of using fstat() vs stat()?

If I have an open file with a known file descriptor, what are the advantages of using fstat(), versus stat()? …

c file system-calls stat fstat
fstat Returning 0 File Size

I thought I understood fstat, I was wrong. I need to know the size of the file then read from …

c fstat
Check if a fstream is either a file or directory

I'm using C++ fstream to read a config file. #include <fstream> std::ifstream my_file(my_filename); Right …

c++ c++11 fstream ifstream fstat