码迷,mamicode.com
首页 > 其他好文 > 详细

关于 MAXScript 逐行写入文本

时间:2014-09-08 01:01:06      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   os   ar   for   文件   

官方帮助文档FileStream Values部分有相关介绍.

fn format_txt filepath filetext =
(
    if doesFileExist filepath == true 
        then
    (
        fin = openfile filepath mode:"r+"
        seek fin #eof
        txt = filetext + "\n"
        format txt to:fin
        close fin
    )
    else
    (
        newfile = createFile filepath
        close newfile
        format_txt filepath filetext
        )
    )  -- 逐行写入文本
format_txt "C:\Users\Administrator\Desktop\2.txt" "你好MAXScript"

每次都会在文档结尾处写入,如果文件不存在则自动创建.

关于 MAXScript 逐行写入文本

标签:des   style   blog   http   color   os   ar   for   文件   

原文地址:http://www.cnblogs.com/3dxy/p/3961003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!