Jmeter函数助手17-StringtoFile
StringtoFile函数用于将字符串写入文件
- Path to file (absolute):将写入的文件路径
- String to write:要写入的字符
- Append to file (true appends, false overwrites, default true):true表示追加,false表示覆盖,默认不填是true追加
- Charset (defaults to UTF-8):编码
1、true/空,增量写入文件${__StringToFile(E:\testname5.txt,1\,2\,3\n4\,5\,6\n7\,8\,9\n,true,)}。如果需要在内容中插入换行符,使用\n
如果文件E:\testname5.txt不存在则新建并写入
如果文件E:\testname5.txt存在则增量写入
2、false,覆盖写入${__StringToFile(E:\testWriteFile.txt,99999\,phone,false,)}