dm_file_write Subroutine

public subroutine dm_file_write(path, content, raw, error)

Uses

  • proc~~dm_file_write~~UsesGraph proc~dm_file_write dm_file_write module~dm_util dm_util proc~dm_file_write->module~dm_util module~dm_error dm_error module~dm_util->module~dm_error module~dm_kind dm_kind module~dm_util->module~dm_kind module~dm_error->module~dm_kind module~dm_ascii dm_ascii module~dm_error->module~dm_ascii iso_fortran_env iso_fortran_env module~dm_kind->iso_fortran_env

Writes content to given file (ASCII or binary).

The routine returns the following error codes in argument error:

  • E_IO if opening the file failed.
  • E_WRITE if writing to file failed.

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: path

Output file path.

character(len=*), intent(in) :: content

Bytes to write.

logical, intent(in), optional :: raw

Unformatted output if true.

integer, intent(out), optional :: error

Error code.


Calls

proc~~dm_file_write~~CallsGraph proc~dm_file_write dm_file_write interface~dm_present dm_present proc~dm_file_write->interface~dm_present