Home | History | Annotate | Download | only in result_tools

Lines Matching refs:path

11 def _get_file_stat(path):
12 """Get the os.stat of the file at the given path.
14 @param path: Path to the file.
18 return os.stat(path)
24 def get_file_size(path):
25 """Get the size of the file in bytes for the given path.
27 @param path: Path to the file.
30 stat = _get_file_stat(path)
34 def get_last_modification_time(path):
35 """Get the last modification time for the given path.
37 @param path: Path to the file.
41 stat = _get_file_stat(path)