hf_extractor / file_utils.py
dwb2023's picture
Update file_utils.py
b7bbd70 verified
raw
history blame
1.37 kB
import os
from magika import Magika
SUPPORTED_FILE_TYPES = ["txt", "shell", "python", "markdown", "yaml", "json", "csv", "tsv", "xml", "html", "ini", "jsonl", "ipynb"]
def get_file_summary(file_path, file_type):
size = os.path.getsize(file_path)
return {
"name": os.path.relpath(file_path),
"type": file_type,
"size": size,
"creation_date": os.path.getctime(file_path),
"modification_date": os.path.getmtime(file_path)
}
def read_file_content(file_path, max_size=32*1024):
with open(file_path, "r", encoding="utf-8", errors="ignore") as file:
if os.path.getsize(file_path) > max_size:
return file.read(max_size) + "\n... [Content Truncated] ..."
else:
return file.read()
def validate_file_types(directory):
m = Magika()
file_types = {}
for root, _, files in os.walk(directory):
if '.git' in root:
continue
for file_name in files:
file_path = os.path.join(root, file_name)
try:
with open(file_path, 'rb') as file:
file_bytes = file.read()
result = m.identify_bytes(file_bytes)
file_types[file_path] = result.output.ct_label
except Exception as e:
file_types[file_path] = f"Error: {str(e)}"
return file_types