ojs_ed.server
Ojs_ed_server.Files
Utilities for editor, server side
ojs_ed
ojs_ed.js
val string_of_file : string -> string
string_of_file filename returns the content of filename in the form of one string.
string_of_file filename
filename
Sys_error
if the file could not be opened. @cgname File.string_of_file
val file_of_string : file:string -> string -> unit
file_of_string ~file str creates a file named filename whose content is str.
file_of_string ~file str
str
if the file could not be opened. @cgname File.file_of_string