Rexx - charout



此函数用于一次向文件写入一个字符。文件名作为参数输入到函数中。

语法

charout(filename) 

参数

  • filename − 这是需要将字符写入到的文件名。

返回值

如果所有字符都成功写入文件,则此函数返回 0。如果函数失败,则返回未能写入文件的字符数。

示例

/* Main program */ 
status = charout(Example.txt,E) 
status = charout(Example.txt,x) 
status = charout(Example.txt,a) 

运行上述程序时,字符“E”、“X”和“a”将添加到文件 Example.txt 中。

rexx_functions_for_files.htm
广告