|
I don`t realy understand your question, but from what i understand i suggest you open your file in binary mode and write it to a nuew file with a .txt extension.
ifstream infile;
infile.open("file_name.lnr", ios::bin);<br />
<br />
infile.read(buffer,size);<br />
<br />
<br />
ofstream outfile;<br />
outfile.open("new_file.txt");<br />
outfile.write(buffer,size);
The syntax might be wrong
Kelvin Chikomo
|
|
|
|
|
|
I don`t realy understand your question, but from what i understand i suggest you open your file in binary mode and write it to a nuew file with a .txt extension.
ifstream infile;<br />
infile.open("file_name.lnr", ios::bin);<br />
<br />
infile.read(buffer,size);<br />
<br />
<br />
ofstream outfile;<br />
outfile.open("new_file.txt");<br />
outfile.write(buffer,size);
The syntax might be wrong
Kelvin Chikomo
|
|
|
|
|
Thanks for ur code
i'll try and let u know
|
|
|
|
|
That won't work: this will just take everything that is in your file and paste it exactly the same in a text file. So you will be able to open your file directly with notepad but the contents will be exactly the same. There is no way of doing what you want without knowing how the data is stored in the file. That is: they saved first this variable (a float), then this string, then this integer value, ... quite difficult to know without having the sources files of the program itself.
|
|
|
|
|
well premlatha,the .lrn file that u have mentioned would follow a structure......
Find out the structure/class.....
then read the file thru that object.....
then open up an another file and write the the members using text formatted functions like fprintf.....
if you were to simply copy the file as it is in binary mode and then write it down in an anoter file ,all u get is a duplicate of the original file!
cheerz!
rateep
"faith, hope, love remain, these three.....; but the greatest of these is love" -1 Corinthians 13:13
|
|
|
|
|
Does anybody know how to get share permissions?
Kelvin Chikomo
|
|
|
|
|
|
What do you mean? Can I get some help please.
Kelvin Chikomo
|
|
|
|
|
Hi folks,
Managed to put my application's icon in the system tray using Shell_NotifyIcon. Now what to i do to restore the applications main window when i double click that icon???
Confused...
God is Merciful...
|
|
|
|
|
|
Yea,thank u so much...
God is Merciful...
|
|
|
|
|
Learner2006 wrote: put my application's icon in the system tray
Here is a really easy class for handling the system tray.
System Tray[^]
|
|
|
|
|
I wanna know how to judge the status of the CD/DVD-ROM door, how do i know it is opening or closed??Could someone help? Thanks ^_^
Nothing at all.
|
|
|
|
|
|
|
|
Owner drawn wrote: Some drunken dumbass afflicted with parkinson's
Wow, poor guy, that must be terrible 
|
|
|
|
|
|
|
toxcct wrote: maybe a cat is playing with it... (the mouse)
Now common man(yawning).
Jesus Loves <marquee direction="up" height="40" scrolldelay="1" step="1" scrollamount="1" style="background:#aabbcc;border-bottom:thin solid 1px #6699cc">
--Owner Drawn
--Nothing special
--Defeat is temporary but surrender is permanent
--Never say quits
--Jesus is Lord
|
|
|
|
|
Thanks very much for your help, I were busy on my work just now and couldn't see the reply on time, i am sorry.
I tried your solution and i found it couldn't work properly.
The WM_DEVICECHANGE message is just useful while the device have actions. If the CD/DVD-ROM have disk inside, it couldn't work as what i wonder.
So I just wanna know how to judge the door, opened or closed?
Someone give me some tips that I have to SendCommand to the CD/DVD-ROM, and the return code will the me the status of it. But i don't know how to do it even i tried to see the document about "SFF Committee Information Specification for ATAPI DVD Devices" which distrubite at June 5, 2003 with the edition Rev 5.5.
|
|
|
|
|
|
Thanks, but can you sure this code will work properly??
In fact, I have tried GetVolumeInformation before, it is only can judge if there is disk inside the CD/DVD-ROM, I just wanna know the status of the door. Opened???Closed???
Thanks all the same.^_^
|
|
|
|
|
Up!Up, could someone help??;P
|
|
|
|