[<<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()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson