Fork me on GitHub

  2023年6月8日
摘要: 直接上源码: import os import time # 定义函数名:在py文件路径下创建cache的txt文件 def txt(name, text): # os.getcwd() 获取当前的工作路径; new = os.getcwd() + '/cache/' # 判断当前路径是否存在,没有 阅读全文
posted @ 2023-06-08 17:11 虚生 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 直接上源码: # 导入os模块 import os import time # 创建文件夹函数 def mkdir(path): # os.path.exists 函数判断文件夹是否存在 folder = os.path.exists(path) # 判断是否存在文件夹如果不存在则创建为文件夹 if 阅读全文
posted @ 2023-06-08 16:55 虚生 阅读(43) 评论(0) 推荐(0) 编辑