| 30 | } |
| 31 | |
| 32 | TTempFileHandle TTempFileHandle::InDir(const TFsPath& dirPath, const TString& filePrefix, const TString& extension) { |
| 33 | return TTempFileHandle(MakeTempName(dirPath.c_str(), filePrefix.c_str(), extension.c_str())); |
| 34 | } |
| 35 | |
| 36 | TFile TTempFileHandle::CreateFile() const { |
| 37 | return TFile(Name(), CreateAlways | RdWr); |
nothing calls this directly
no test coverage detected