def write_check_file(filepath, docs): folder_path = os.path.join(os.path.dirname(filepath), "tmp_files") if not os.path.exists(folder_path): os.makedirs(folder_path) fp = os.path.join(folder_path, 'load_file.txt') with open(fp, 'a+', encoding='utf-8') as fout: fout.write("filepath=%s,len=%s" % (filepath, len(docs))) fout.write('\n') for i in docs: fout.write(str(i)) fout.write('\n') fout.close()
时间: 2024-04-27 12:23:55 浏览: 158
Write_Read_File.zip_file operation_operation
这是一个用于写入检查文件的函数write_check_file(),它接受一个文件路径和一个文档列表docs作为参数。该函数将会在文件所在的目录下创建一个名为"tmp_files"的文件夹,如果该文件夹不存在的话。然后将文件路径和文档列表的长度写入到名为"load_file.txt"的文件中,并将每个文档写入文件中。
该函数的作用是为了方便检查输入的文件是否被成功加载,并记录加载的文档列表。
阅读全文