| 17 | #include <util/system/sysstat.h> |
| 18 | |
| 19 | bool NFs::Remove(const TString& path) { |
| 20 | #if defined(_win_) |
| 21 | return NFsPrivate::WinRemove(path); |
| 22 | #else |
| 23 | return ::remove(path.data()) == 0; |
| 24 | #endif |
| 25 | } |
| 26 | |
| 27 | bool NFs::SetExecutable(const TString& path, bool exec) { |
| 28 | #ifdef _unix_ |