2023-10-09 11:03:41 +00:00
|
|
|
|
# coding=utf-8
|
|
|
|
|
|
"""
|
|
|
|
|
|
@project: maxkb
|
|
|
|
|
|
@Author:虎
|
|
|
|
|
|
@file: file_util.py
|
|
|
|
|
|
@date:2023/9/25 21:06
|
|
|
|
|
|
@desc:
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_file_content(path):
|
2024-04-15 08:53:26 +00:00
|
|
|
|
with open(path, "r", encoding='utf-8') as file:
|
|
|
|
|
|
content = file.read()
|
2023-10-09 11:03:41 +00:00
|
|
|
|
return content
|