| 110 | if (_wstat64(FullPath.To_Unicode().c_str(), &Buf)==0 && Buf.st_mode&S_IFREG && Buf.st_mode&S_IEXEC) |
| 111 | #else |
| 112 | struct stat Buf; |
| 113 | if (stat(FullPath.To_Local().c_str(), &Buf)==0 && Buf.st_mode&S_IFREG && Buf.st_mode&S_IXUSR) |
| 114 | #endif //WINDOWS |
| 115 | return FullPath; |
no outgoing calls
no test coverage detected