<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2 FAMILY="SANSSERIF" FACE="Arial" LANG="0">&gt;The test is needed to establish if a file is mc/rr as opposed to other file <BR>
&gt;formats before opening it. Looks like the detailedFiles is the answer.</BLOCKQUOTE><BR>
<BR>
My thanks to RG@4W via K@ST... A function that returns the Mac fileType of a file:<BR>
<BR>
<BR>
function fwMacFileType pPath<BR>
&nbsp; local tSaveDir, tShortFileName, tFileList, tLine, tType<BR>
&nbsp; put the directory into tSaveDir<BR>
&nbsp; set the itemdel to "/"<BR>
&nbsp; put the last item of pPath into tShortFileName<BR>
&nbsp; delete last item of pPath<BR>
&nbsp; set the directory to pPath<BR>
&nbsp; put the detailed files into tFileList<BR>
&nbsp; put lineoffset(cr&amp;urlEncode(tShortFileName)&amp;comma, cr&amp;tFileList&amp;comma)into tLine<BR>
&nbsp; if tLine &gt; 0 then<BR>
&nbsp;&nbsp;&nbsp; set the itemdel to comma<BR>
&nbsp;&nbsp;&nbsp; put last item of line tLine of tFileList into tType<BR>
&nbsp; end if<BR>
&nbsp; set the directory to tSaveDir<BR>
&nbsp; return tType<BR>
end fwMacFileType<BR>
<BR>
For MC, the type&amp;creator is "MCRDMSTK", and for Rev it's "REVORSTK"<BR>
<BR>
Very neat.<BR>
<BR>
/H<BR>
_________________________________________________<BR>
Hugh Senior<BR>
The Flexible Learning Company<BR>
Consultant Programming &amp; Software Solutions<BR>
Fax/Voice: +44 (0)1483.27 87 27<BR>
Email: mailto:h@flexibleLearning.com<BR>
Web: www.flexibleLearning.com</FONT></HTML>