Path.stat() 
Return information about this path (similarly to os.stat()). The result is looked up at each call to this method.
>>> p = Path('setup.py')
>>> p.stat().st_size
956
>>> p.stat().st_mtime
1327883547.852554
Path.stat() 
Return information about this path (similarly to os.stat()). The result is looked up at each call to this method.
>>> p = Path('setup.py')
>>> p.stat().st_size
956
>>> p.stat().st_mtime
1327883547.852554
Please login to continue.