| 26 | } |
| 27 | |
| 28 | TTempFileHandle TTempFileHandle::InCurrentDir(const TString& filePrefix, const TString& extension) { |
| 29 | return TTempFileHandle(MakeTempName(".", filePrefix.c_str(), extension.c_str())); |
| 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())); |
nothing calls this directly
no test coverage detected