123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #include "is_writable.h"
- #ifdef _WIN32
- #include <sys/stat.h>
- #ifndef S_IWUSR
- # define S_IWUSR S_IWRITE
- #endif
- IGL_INLINE bool is_writable(const char* filename)
- {
- // Check if file already exists
- struct stat status;
- if(stat(filename,&status)!=0)
- {
- return false;
- }
- return S_IWUSR & status.st_mode;
- }
- #else
- #include <sys/stat.h>
- #include <unistd.h>
- IGL_INLINE bool igl::is_writable(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_IWUSR & status.st_mode;
- }
- // Dealing with group member
- if( this_gid == status.st_gid )
- {
- return S_IWGRP & status.st_mode;
- }
- // Dealing with other
- return S_IWOTH & status.st_mode;
- }
- #endif
|