Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Fast Library For Clipper 3.02 Reference - <b>arjfile()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
    ArjFile()

         Returns the contents of an ARJ file

    Syntax:

         ArjFile ( cFile ) -> aARJ

         cFile : The name of the ARJ file

    Description:

         Returns a bidimensional array with information about the contents
         of an ARJ file.
         The subarrays have the following format:

         {
           { cName, nCompr, nSize, nRatio, dDate, cTime }
           ...
           { cName, nCompr, nSize, nRatio, dDate, cTime }
         }

         cName          File name
         nSize          Real size of file
         nCompr         Compressed size
         nRatio         Compression ratio
         dDate          Date of file
         cTime          Time of file

    Return:

         An array with information about the contents of ARJ file.

    Example:

         aARJ := ArjFile ( "C:\FastLib\Fast.Arj" )
         For nInd := 1 To Len ( aARJ )
           For nOther := 1 To Len ( aARJ [ nInd ] )
             ? aARJ [ nInd, nOther ]
           Next
         Next

See Also: ZipFile()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson