• 大小: 567B
    文件类型: .py
    金币: 2
    下载: 1 次
    发布日期: 2021-01-10
  • 语言: Python
  • 标签: python  

资源简介

将压缩文件隐藏到图片的python实现,更改筛选标准可以推广到融合各种文件

资源截图

代码片段和文件信息

import os
path=os.getcwd()
files = os.listdir(path)
#print files
for file in files:
    if file.endswith(‘jpg‘)or file.endswith(‘png‘)or file.endswith(‘bmp‘):
        jpg=file
    if file.endswith(‘zip‘)or file.endswith(‘rar‘)or file.endswith(‘7z‘):
        zi=file
jpg_file

评论

共有 条评论