Páginas filhas
  • LOG_file_translatePath

Versões comparadas

Chave

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

...

Bloco de código
languageruby
themeConfluence
linenumberstrue
#--------------------------------------------#
 FUNCTION LOG_file_translatePath_test()
#--------------------------------------------#
  DEFINE l_dir  CHAR(250)

  LET l_dir = "c:\\temp\\"

  LET l_dir = LOG_file_translatePath(l_dir,0,"/")
  CALL conout("PATH ajustado com '/' retirando barra final = "||l_dir)

  LET l_dir = LOG_file_translatePath(l_dir,"\")
  CALL conout("PATH ajustado com '\' sem alterar o final para inclusão ou remoção da barra = "||l_dir)
END FUNCTION

Informações

Fontes: directory file.4gl, directoryfile.prw

Veja também

LOG_file_create

...