OS をインポート
def del_files(path):
os.walk(path) 内の root 、 dirs、ファイルの場合:
ファイル内の名前の場合:
if name.endswith(".tmp"):
os.remove(os.path.join(root, name))
print ("ファイルの削除: " + os.path.join(root, name))
# test
if __name__ == "__main__":
path = '/tmp'
del_files(path)