This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import json | |
import re | |
import datetime | |
def process_files(directory_path): | |
''' | |
遍历 SiYuan/data 目录下所有 .sy 结尾的文件,提取文件的标题和唯一码,生成映射数组,将映射数组保存到 mappings.txt 文件中 | |
''' |