def ListFileSizeAndModificationInfo(Infile):
    """List file size and modification time info."""

    MiscUtil.PrintInfo("\nFile size: %s" %
                       MiscUtil.GetFormattedFileSize(Infile))
    MiscUtil.PrintInfo("Last modified: %s" %
                       time.ctime(os.path.getmtime(Infile)))
    MiscUtil.PrintInfo("Created: %s" % time.ctime(os.path.getctime(Infile)))