| 165 | } |
| 166 | |
| 167 | bool NFs::Exists(const TString& path) { |
| 168 | #if defined(_win_) |
| 169 | return NFsPrivate::WinExists(path); |
| 170 | #elif defined(_unix_) |
| 171 | return access(path.data(), F_OK) == 0; |
| 172 | #endif |
| 173 | } |
| 174 | |
| 175 | TString NFs::CurrentWorkingDirectory() { |
| 176 | #if defined(_win_) |
no test coverage detected