加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
带时间信息copy文件.py 497 Bytes
一键复制 编辑 原始数据 按行查看 历史
fengmingshan 提交于 2021-12-15 20:46 . 找回资料提交
# -*- coding: utf-8 -*-
"""
Created on Thu Sep 6 10:42:20 2018
@author: Administrator
"""
import time
import sys
import os
import shutil
cTime = "2011-03-19 20:07:02"
mTime = "2011-03-19 20:07:02"
file =r'd:\test\基站巡检信息(模板).xlsx'
file_new = r'd:\test\基站巡检信息(模板)-1.xlsx'
os.stat(file)
shutil.copy(file, file_new)
shutil.copystat(file, file_new)
os.path.getctime(file)
a = os.path.getatime(file)
m = os.path.getmtime(file)
os.utime(file_new, (a, m))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化