Efl.Io.Manager.open

Description

Opens a file.

The fulfilled value in the promise will be the Eina.File*.

Signature

open @const {
    params {
        @in path: string;
        @in shared: bool;
    }
    return: future<Eina.File>;
}

C signature

Eina_Future *efl_io_manager_open(const Eo *obj, const char *path, Eina_Bool shared);

Parameters

  • path (in) - Path to file
  • shared (in) - true if the file can be accessed by others, false otherwise

Implemented by