document.metadata
of each loaded document object for more details>>> from llama_index.core import SimpleDirectoryReader >>> documents = SimpleDirectoryReader("./docs/docs/examples/data/paul_graham").load_data() >>> documents[0].metadata {'file_path': '/Users/loganmarkewich/giant_change/llama_index/docs/docs/examples/data/paul_graham/paul_graham_essay.txt', 'file_name': 'paul_graham_essay.txt', 'file_type': 'text/plain', 'file_size': 75042, 'creation_date': '2024-04-16', 'last_modified_date': '2024-04-16'} >>>