python Limpia descargas temporales windows alojada en la carpeta%LOCALAPPDATA%

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Limpia descargas temporales windows alojada en la carpeta%LOCALAPPDATA%相关的知识,希望对你有一定的参考价值。

import os, shutil, sys

parent = os.path.join(os.environ['localappdata'], 'Temp')

print("Removing folders from %s" % parent)

def filtering(x):
    res = x.startswith('apm-')
    res += x.startswith('d-')
    return res

for f in filter(filtering, os.listdir(parent)):
    path = os.path.join(parent, f)
    try:
        os.system("rm -rf %s" % path)
        print("Removed\t%s" % path)
    except:
        pass
        print("Can't remove\t%s" % path)

print("Done!")

以上是关于python Limpia descargas temporales windows alojada en la carpeta%LOCALAPPDATA%的主要内容,如果未能解决你的问题,请参考以下文章

javascript Descarga de CSV

PHP Forzar descarga de ficheros

PHP Descargas seguras con PHP

AngularJS 和 Servlet 集成

我无法通过 ndk 在 android studio 中编译和 android 应用程序

奇怪的 PHP 错误:'不能在写上下文中使用函数返回值'