FileGetContent
Back to ListDescription: Read content of a file, return its content
FileMaker Prototype:
Set Variable [$res; ACF_Run("FileGetContent"; string_path)]
Category: EMAIL
Function source:
function FileGetContent ( string path )
int x = open ( path , "r" );
string content = read (x);
close (x);
return content;
end
