File Copy
| Thu, 2008-04-17 08:49 | |
|
Hi code for creating file is as: void CViewAppAppUi::MediaFileL() TBuf<32> iBuf; } ple help me how i can copy data one file to another file Satish Khatri |
|
| Thu, 2008-04-17 08:49 | |
|
Hi code for creating file is as: void CViewAppAppUi::MediaFileL() TBuf<32> iBuf; } ple help me how i can copy data one file to another file Satish Khatri |
|
Forum posts: 672
If you just want to copy the file to another place, use CFileMan::Copy. If you want to move the file, use RFs::Rename.
If you want to copy the contents of the file and append/replace it to another file, then you need to open both, read data from the first, and write to the second (if appending, Seek first to the end).
Forum posts: 31
[edit] arg, what he said.