ACF Library

FilePutContent

Back to List

Description: 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

Back to List