用python显示D:\\sdut\cs目录下的所有文件名称,创建时间(**年**月**日 **时**分**秒),文件长度(字节数),以及文件内容;
时间: 2023-12-04 07:39:49 浏览: 44
Python中查看文件名和文件路径
以下是实现该功能的Python代码:
```python
import os
import time
path = r'D:\sdut\cs'
for file_name in os.listdir(path):
file_path = os.path.join(path, file_name)
if os.path.isfile(file_path):
# 文件名
print('文件名:', file_name)
# 创建时间
create_time = os.path.getctime(file_path)
create_time_str = time.strftime('%Y年%m月%d日 %H:%M:%S', time.localtime(create_time))
print('创建时间:', create_time_str)
# 文件长度
file_size = os.path.getsize(file_path)
print('文件长度:', file_size, '字节')
# 文件内容
with open(file_path, 'r', encoding='utf-8') as f:
content = f.read()
print('文件内容:', content)
print('------------------------')
```
阅读全文