1 Star 6 Fork 0

恐咖兵糖/Obsidian 云存储后端 API Go 版本

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
update.py 942 Bytes
一键复制 编辑 原始数据 按行查看 历史
恐咖兵糖 提交于 2023-12-05 11:09 . version: 4.2.9
import os
import fileinput
import shutil
# 假设这是你的字符串列表,每一个字符串都是一个文件路径
file_paths = [
'step2.sh',
'docs/md/go-version/2-运行与部署.md',
'obcsapi-web/src/stores/setting.ts',
'server/assest.go',
'server/Dockerfile',
'server/config.example.yaml',
'server/server.go',
'server/tools/config.example.yaml',
]
for file_path in file_paths:
# 检查文件是否存在
if not os.path.isfile(file_path):
print(f"File {file_path} does not exist.")
continue
with fileinput.FileInput(file_path, inplace=True) as file:
for line in file:
# 读取每一行并替换其中的 '4.2.7' 为 '4.2.8'
print(line.replace('4.2.8', '4.2.9'), end='')
shutil.copy('server/config.example.yaml', 'server/tools/config.example.yaml')
shutil.copy('server/config.example.yaml', 'docs/md/go-version/config.example.yaml')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kkbt/obcsapi-go.git
[email protected]:kkbt/obcsapi-go.git
kkbt
obcsapi-go
Obsidian 云存储后端 API Go 版本
master

搜索帮助