Show all Temporary Files from Current User

Please use the script to get all temporary files

import os
import tempfile
def showtempfiles():
    for rt, di, fi in os.walk(tempfile.gettempdir()):
        for fn in fi:
            print (os.path.join(rt, fn))
if __name__=='__main__':
    showtempfiles()

Sample Output: