
def archive():
    '''
    @description: Creates a tar archive of any files located within the Intersect sessions temporary directory
    @short: create tar archive of sessions temp directory 
    @author: ohdae [bindshell@live.com]
    '''
    log_msg("\n Start Time: %s" % logtime)

    os.chdir(Temp_Dir)
    temp_files = os.listdir(Temp_Dir)
    tarlist("reports", temp_files)

    


