open a *.dat file

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Pier

    #1

    open a *.dat file

    there is a method to open and decript a *.dat files?

  • angrybaldguy@gmail.com

    #2
    Re: open a *.dat file

    On 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");

    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.

    Comment

    • daya

      #3
      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

        #4
        Re: open a *.dat file

        angrybaldguy@gm ail.com writes:
        On 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");
        More likely

        FILE *data = fopen ("input.dat" , "rb");

        though it's certainly possible for a ".dat" file to contain text data.
        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.
        Indeed.

        --
        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

        Working...