FilePutContent
Back to ListDescription: Write some content to a file
FileMaker Prototype:
Set Variable [$res; ACF_Run("FilePutContent"; string_path; string_content)]
Category: EMAIL
Function source:
function FilePutContent ( string path, string content )
int x = open ( path , "w" );
write ( x, content);
close (x);
return "OK";
end
