there is a method to open and decript a *.dat files?
open a *.dat file
Collapse
This topic is closed.
X
X
-
PierTags: None -
angrybaldguy@gmail.com
Re: open a *.dat file
On Mar 26, 11:41 pm, "Pier" <christian.per. ..@gmail.comwro te:FILE *data = fopen ("input.dat" , "r");there is a method to open and decript a *.dat files?
However, without more information nobody can tell you how to interpret
the data in that file. It doesn't help that ".dat" is one of several
well-used "we're too lazy to make up a file extension" extensions used
by many different programs.
-
daya
Re: open a *.dat file
If you mean the video file by DAT file you need to use video codecs
for accesssing information that file
Comment
-
Keith Thompson
Re: open a *.dat file
angrybaldguy@gm ail.com writes:More likelyOn Mar 26, 11:41 pm, "Pier" <christian.per. ..@gmail.comwro te:>>there is a method to open and decript a *.dat files?
FILE *data = fopen ("input.dat" , "r");
FILE *data = fopen ("input.dat" , "rb");
though it's certainly possible for a ".dat" file to contain text data.
Indeed.However, without more information nobody can tell you how to interpret
the data in that file. It doesn't help that ".dat" is one of several
well-used "we're too lazy to make up a file extension" extensions used
by many different programs.
--
Keith Thompson (The_Other_Keit h) kst-u@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Comment
Comment