I've got a fstream my_file("test.txt"), but I don't know if test.txt exists. In case it exists, I would like to know if I can read it, too. How to do that?
I use Linux.
|
|
I would probably go with:
The |
|||||||
|
|
You might use Boost.Filesystem. It has a I don't know how about checking read access rights. You could look in Boost.Filesystem too. However likely there will be no other (portable) way than try to actually read the file. |
|||||||
|
|
What Operating System/platform? On Linux/Unix/MacOSX, you can use fstat. On Windows, you can use GetFileAttributes. Usually, there is no portable way of doing this with standard C/C++ IO functions. |
|||
|
if you are on unix then access() can tell you if it's readable. However if ACL's are in use, then it gets more complicated, in this case it's best to just open the file with ifstream and try read.. if you cannot read then the ACL may prohibit reading. |
|||
|
I know the poster eventually said they were using Linux, but I'm kind of surprised that no one mentioned the You will need to include the
the function returns a
|
|||
|
|
|
Concerning the use of fstat in windows, I am not sure if it is what you want. From Microsoft the file must be already open. Stat should work for you. |
||||
|
|