0

Is there any object oriented method in C++ which is used to examine the file's properties like the lstat in C ? Or it's similar to the File Class in Java ?

yuki070
  • 53
  • 2
  • 4

1 Answers1

1

You can just use lstat in C++, just as you would in C. It's part of POSIX.

Christian Ternus
  • 8,406
  • 24
  • 39