AddAccountList » 历史记录 » 版本 2
yangdefeng, 2022-06-22 11:17
1 | 1 | machenhe | _*%{color:green}addAccountList%*_ |
---|---|---|---|
2 | 增加人物帐号到指定文件 |
||
3 | |||
4 | |||
5 | 标签:命令定义|addAccountList |
||
6 | |||
7 | *格式* |
||
8 | |命令名 |参数1 | |
||
9 | |addAccountList |文件路径 | |
||
10 | |||
11 | *说明* |
||
12 | * 参数1: 写入文件路径 |
||
13 | 2 | yangdefeng | 路径需要基于..\Mir200\Envir |
14 | 1 | machenhe | %{color:lightGrey}举例 |
15 | 设定写入路径为 |
||
16 | 2 | yangdefeng | \testlist.txt |
17 | 1 | machenhe | 完整写入路径 |
18 | 2 | yangdefeng | ..\Mir200\Envir\testlist.txt% |
19 | 1 | machenhe | |
20 | - |
||
21 | - |
||
22 | |||
23 | *%{color:deepskyblue}特戒引擎脚本示例:%* |
||
24 | |||
25 | bq. [<notextile>@</notextile>main] |
||
26 | #act |
||
27 | 2 | yangdefeng | mov s$file \数据文件\测试非预制数据文件.txt |
28 | 1 | machenhe | #say |
29 | 2 | yangdefeng | <增加账号/<notextile>@</notextile>添加>\ \ |
30 | <删除文件中账号/<notextile>@</notextile>删除>\ \ |
||
31 | <检测账号是否在文件中/<notextile>@</notextile>检测账号>\ \ |
||
32 | <检测文件存在/<notextile>@</notextile>存在>\ \ |
||
33 | 1 | machenhe | |
34 | [<notextile>@</notextile>添加] |
||
35 | #act |
||
36 | *%{color:green}addAccountList%* <$str(s$file)> |
||
37 | readTxt <$str(s$file)> s0 |
||
38 | %{color:lightGrey};print命令在控制台输出文件内容% |
||
39 | print 文件内容-> s0 |
||
40 | |
||
41 | [<notextile>@</notextile>删除] |
||
42 | #if |
||
43 | #act |
||
44 | [[delAccountList]] <$str(s$file)> |
||
45 | [[readTxt]] <$str(s$file)> s0 |
||
46 | print 文件内容-> s0 |
||
47 | |
||
48 | [<notextile>@</notextile>检测账号] |
||
49 | #if |
||
50 | [[checkAccountList]] <$str(s$file)> |
||
51 | #act |
||
52 | print 账号存在 |
||
53 | #elseAct |
||
54 | print 账号不存在 |
||
55 | |
||
56 | #if |
||
57 | #act |
||
58 | readTxt <$str(s$file)> s0 |
||
59 | print 文件内容-> s0 |
||
60 | |
||
61 | [<notextile>@</notextile>存在] |
||
62 | #if |
||
63 | [[fileExist]] <$str(s$file)> |
||
64 | #act |
||
65 | print 文件存在 |
||
66 | #elseAct |
||
67 | print 文件不存在 |