Páginas filhas
  • LOG_file_close

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Tipo

Descrição

SMALLINT

Verdadeiro se o arquivo for fechado ou gravado com sucesso.

Em caso de arquivo novo ou editado, ocorre a gravação do arquivo neste momento.

Exemplo

Bloco de código
languageruby
themeConfluence
linenumberstrue
#-----------------------------#
 FUNCTION LOG_fileClose_test()
#-----------------------------#
  DEFINE l_file   CHAR(250)
  DEFINE l_handle SMALLINT

  LET l_file = "c:\\temp\\arquivo1.txt"

  LET l_handle = LOG_file_open(l_file,0)
  IF l_handle >= 0 THEN
     CALL LOG_file_close(l_handle)
  END IF
END FUNCTION

...