| 151 | } |
| 152 | |
| 153 | void NFs::Cat(const TString& dstPath, const TString& srcPath) { |
| 154 | TUnbufferedFileInput src(srcPath); |
| 155 | TUnbufferedFileOutput dst(TFile(dstPath, ForAppend | WrOnly | Seq)); |
| 156 | |
| 157 | TransferData(&src, &dst); |
| 158 | } |
| 159 | |
| 160 | void NFs::Copy(const TString& existingPath, const TString& newPath) { |
| 161 | TUnbufferedFileInput src(existingPath); |
nothing calls this directly
no test coverage detected