1 Star 0 Fork 0

LittleRain/paper-agent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
utils.py 345 Bytes
一键复制 编辑 原始数据 按行查看 历史
CareyWYR 提交于 2024-07-13 20:27 . arxiv page
# -*- coding: utf-8 -*-
"""
@file : utils.py
@date : 2024-07-13
@author : leafw
"""
import os
def ensure_directory_exists(directory_path: str):
if not os.path.exists(directory_path):
os.makedirs(directory_path)
print(f"目录 {directory_path} 已创建")
else:
print(f"目录 {directory_path} 已存在")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhbchn/paper-agent.git
[email protected]:zhbchn/paper-agent.git
zhbchn
paper-agent
paper-agent
dev

搜索帮助