行为
delAccountList
增加人物帐号到指定文件
标签:命令定义|delAccountList
格式命令名 | 参数1 |
delAccountList | 文件路径 |
- 参数1: 处理文件路径
路径需要基于..\Mir200\Envir
举例
设定处理路径为
\testlist.txt
完整处理路径
..\Mir200\Envir\testlist.txt
特戒引擎脚本示例:
[@main]
#act
mov s$file \数据文件\测试非预制数据文件.txt
#say
<增加账号/@添加>\ \
<删除文件中账号/@删除>\ \
<检测账号是否在文件中/@检测账号>\ \
<检测文件存在/@存在>\ \
[@添加]
#act
addAccountList <$str(s$file)>
readTxt <$str(s$file)> s0
;print命令在控制台输出文件内容
print 文件内容-> s0
[@删除]
#if
#act
delAccountList <$str(s$file)>
readTxt <$str(s$file)> s0
print 文件内容-> s0
[@检测账号]
#if
checkAccountList <$str(s$file)>
#act
print 账号存在
#elseAct
print 账号不存在
#if
#act
readTxt <$str(s$file)> s0
print 文件内容-> s0
[@存在]
#if
fileExist <$str(s$file)>
#act
print 文件存在
#elseAct
print 文件不存在
由 yangdefeng 更新于 超过 2 年 之前 · 2 修订