Hi All,
File Text.txt
Contains following text as :
"C:\program file\applicatio n data\details\ap p" "D:\Program File"
I tried to read that data as
fscanf(oFp, "%s %s", sCopyDirectory, sToDirectory);
it gives me
sCopyDirectory = "C:\program
sToDirectory= file\applicatio n
How can I read a full string between a two double quote mark from a
file?
Well we can read "C:\program file\applicatio n data\details\ap p" "D:
\Program File"
in two character pointers easily. I need the same solution but reading
from a file.
Thanks
Anup
Comment