Tagged Questions
The cfile tag has no wiki summary.
5
votes
4answers
6k views
UTF-8, CString and CFile? (C++, MFC)
I'm currently working on a MFC program that specifically has to work with UTF-8. At some point, I have to write UTF-8 data into a file; to do that, I'm using CFiles and CStrings.
When I get to write ...
1
vote
1answer
230 views
Is there any way to speed up frequent file write operations? CFile
My task is to write small parts of data to file frequently and guaranteed. It's a some type of logging system, that must provide a guaranteed safety and speed of saving data to disk. I found that ...
1
vote
1answer
391 views
Getting error message from CStdioFile::Open()?
If CStdioFile::Open fails, I want to be able to report the cause of the error.
However, it appears as though it never throws an exception. Also, when I try the following:
CStdioFile file;
...
1
vote
2answers
2k views
How to get a CString object from a file with CFile::Read() in Unicode?
The charset is Unicode. I want to write a string of CString type into a file, and then read it out from the file afterwards.
I write the string into a file with CFile::Write() method:
int nLen = ...
1
vote
1answer
298 views
Can file pointer change during the process of write or read of a CFile object
I have a CFile object, which can be accessed by multiple threads. There is the possibility that one thread is writing data to this file while another thread is reading data from the file. I want to ...
1
vote
2answers
654 views
What happened if CFile::Write throws an exception?
Assume that write operation throws an exception hafl-way, is there any data written into the file, or there is no data written in the file?
Thank you!
0
votes
1answer
191 views
Not able to read the contents in the file in MFC using the function Cfile?
I am not able to read the contents in the file if I manually write something in the file...If there are contents existing already am able to read the contents...but if I go and manually write ...
0
votes
1answer
396 views
Question About CFile Seek
I am using MFC CFile Seek function.
I have a problem about Seek out of file length.
CFile cfile;
BOOL bResult = cfile.Open(
L"C:\\2.TXT",
CFile::modeReadWrite |
CFile::modeCreate |
...