123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #include "is_readable.h"
- #ifdef _WIN32
- # include <cstdio>
- IGL_INLINE bool igl::is_readable(const char* filename)
- {
- FILE * f = fopen(filename,"r");
- if(f == NULL)
- {
- return false;
- }
- fclose(f);
- return true;
- }
- #else
- # include <sys/stat.h>
- # include <unistd.h>
- # include <iostream>
- IGL_INLINE bool igl::is_readable(const char* filename)
- {
- // Check if file already exists
- struct stat status;
- if(stat(filename,&status)!=0)
- {
- return false;
- }
- // Get current users uid and gid
- uid_t this_uid = getuid();
- gid_t this_gid = getgid();
- // Dealing with owner
- if( this_uid == status.st_uid )
- {
- return S_IRUSR & status.st_mode;
- }
- // Dealing with group member
- if( this_gid == status.st_gid )
- {
- return S_IRGRP & status.st_mode;
- }
- // Dealing with other
- return S_IROTH & status.st_mode;
- }
- #endif
|