**内容** 用户在目录中的一个文件自定义python(或其它语言,以方便为准)函数生成文件名。例如该文件内容为 ```python filename(level, timems, bv, player, state): statestr = '' if state==SUCCESS else '_' + state return level + '_' + ms_to_s(timems) + '_' + bv + '_' + player + statestr + '.evf' ``` 保存文件时元扫雷直接调用该文件中的函数。 **是否可以自行实现想法** 否