<emphasis role="bold">GetLogicalFileAttribute</emphasis> STD.File.GetLogicalFileAttribute STD.File.GetLogicalFileAttribute File.GetLogicalFileAttribute GetLogicalFileAttribute ( logicalfilename, attrname ) logicalfilename A null-terminated string containing the name of the logical file as it is known by the DFU. attrname A null-terminated string containing the name of the file attribute to return. Return: GetLogicalFileAttribute returns returns a VARSTRING (null-terminated) value. The GetLogicalFileAttribute function returns the value of the attrname for the specified logicalfilename. Example: IMPORT STD; file := '~class::bmf::join::halfkeyed'; OUTPUT(STD.File.GetLogicalFileAttribute(file,'recordSize')); OUTPUT(STD.File.GetLogicalFileAttribute(file,'recordCount')); OUTPUT(STD.File.GetLogicalFileAttribute(file,'size')); OUTPUT(STD.File.GetLogicalFileAttribute(file,'clusterName')); OUTPUT(STD.File.GetLogicalFileAttribute(file,'directory')); OUTPUT(STD.File.GetLogicalFileAttribute(file,'numparts'));