6 lines
176 B
Python
6 lines
176 B
Python
from datetime import datetime
|
|
from pathlib import Path
|
|
|
|
|
|
def path_ctime_str(path: Path):
|
|
return datetime.fromtimestamp(path.lstat().st_ctime).strftime('%d/%m/%Y %H:%M:%S')
|