Click here to Skip to main content
16,015,755 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: i want to convert source made by c++ to c. Pin
prasad_som24-May-08 23:32
prasad_som24-May-08 23:32 
AnswerRe: i want to convert source made by c++ to c. Pin
CPallini24-May-08 23:58
mveCPallini24-May-08 23:58 
AnswerRe: i want to convert source made by c++ to c. Pin
Jijo.Raj25-May-08 0:04
Jijo.Raj25-May-08 0:04 
AnswerRe: i want to convert source made by c++ to c. Pin
Christian Graus25-May-08 2:00
protectorChristian Graus25-May-08 2:00 
AnswerRe: i want to convert source made by c++ to c. Pin
Hamid_RT25-May-08 2:26
Hamid_RT25-May-08 2:26 
GeneralRe: i want to convert source made by c++ to c. Pin
CPallini25-May-08 3:05
mveCPallini25-May-08 3:05 
JokeRe: i want to convert source made by c++ to c. Pin
Hamid_RT25-May-08 4:27
Hamid_RT25-May-08 4:27 
QuestionGet file size Pin
pl_kode24-May-08 21:37
pl_kode24-May-08 21:37 
I am reading the value of the size from the properties file...

e.g.
file_size=500.

I have to check for the file size limit. The max limit is set as done above. During runtime the following function checks for the file size with the above by using the following function to get the current file size.

int get_file_size()
{
	long file_size;
	ifstream myfile;
	myfile.open(path.c_str());
	myfile.seekg(0, ios::end);
	file_size = myfile.tellg();
	myfile.close();
	return file_size;
}


But if I do this I get the file size in bytes. I want to do everything in kb's. Any suggestion please.

THANKS.
AnswerRe: Get file size Pin
shaderx24-May-08 22:01
shaderx24-May-08 22:01 
JokeRe: Get file size Pin
Doc Lobster24-May-08 23:31
Doc Lobster24-May-08 23:31 
AnswerRe: Get file size Pin
Michael Schubert24-May-08 22:27
Michael Schubert24-May-08 22:27 
QuestionRe: Get file size Pin
CPallini25-May-08 0:29
mveCPallini25-May-08 0:29 
AnswerRe: Get file size Pin
Michael Schubert25-May-08 4:37
Michael Schubert25-May-08 4:37 
GeneralRe: Get file size Pin
CPallini25-May-08 7:24
mveCPallini25-May-08 7:24 
GeneralRe: Get file size Pin
Michael Schubert25-May-08 20:08
Michael Schubert25-May-08 20:08 
GeneralRe: Get file size Pin
Maruf Maniruzzaman25-May-08 1:51
Maruf Maniruzzaman25-May-08 1:51 
AnswerRe: Get file size Pin
Hamid_RT25-May-08 2:54
Hamid_RT25-May-08 2:54 
Questioncan you tell me what mean this? Pin
Jung Seng Won24-May-08 21:29
Jung Seng Won24-May-08 21:29 
QuestionRe: can you tell me what mean this? Pin
Joseph Marzbani25-May-08 3:19
Joseph Marzbani25-May-08 3:19 
AnswerRe: can you tell me what mean this? Pin
Manu.Dev25-May-08 3:51
Manu.Dev25-May-08 3:51 
QuestionHow to add Socket support Pin
tina->newcoder24-May-08 21:18
tina->newcoder24-May-08 21:18 
AnswerRe: How to add Socket support Pin
prasad_som24-May-08 23:30
prasad_som24-May-08 23:30 
GeneralRe: How to add Socket support Pin
ramana.g25-May-08 2:44
ramana.g25-May-08 2:44 
QuestionRe: How to add Socket support Pin
tina->newcoder25-May-08 3:03
tina->newcoder25-May-08 3:03 
AnswerRe: How to add Socket support Pin
ramana.g25-May-08 19:47
ramana.g25-May-08 19:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.