| 352 | } |
| 353 | |
| 354 | void TFsPath::Touch() const { |
| 355 | CheckDefined(); |
| 356 | if (!TFile(*this, OpenAlways).IsOpen()) { |
| 357 | ythrow TIoException() << "failed to touch " << *this; |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | // XXX: move implementation to util/somewhere. |
| 362 | TFsPath TFsPath::RealPath() const { |
no test coverage detected