| 261 | } |
| 262 | |
| 263 | TFsPath TFsPath::Child(const TString& name) const { |
| 264 | if (!name) { |
| 265 | ythrow TIoException() << "child name must not be empty"; |
| 266 | } |
| 267 | |
| 268 | return *this / name; |
| 269 | } |
| 270 | |
| 271 | struct TClosedir { |
| 272 | static void Destroy(DIR* dir) { |
no outgoing calls
no test coverage detected