#!/usr/bin/env python3 import os import sys import tempfile (fd,filepath) = tempfile.mkstemp(dir=sys.argv[1]) os.ftruncate(fd,1024) os.unlink(filepath) os.ftruncate(fd,1024) os.close(fd)