我是靠谱客的博主 斯文路灯,最近开发中收集的这篇文章主要介绍python 删除服务器文件,python删除服务器文件代码示例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

本文主要研究的是Python编程删除服务器文件,具体实现 代码如下。

实例1

#coding:utf-8

import paramiko

"""

创建文件 删除文件 root权限

"""

ssh=paramiko.SSHClient()

ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())

ssh.connect(hostname="192.168.1.37",port=22,username="test",password="test")

stdin,stdout,stderr=ssh.exec_command('sudo -i touch /a.txt',get_pty=True)

stdin.write("testn")

# stdin.write("n")

stdin.close()

stdout.close()

print(stderr.read())

stderr.close()

stdin,stdout,stderr=ssh.exec_command('sudo -i rm -f /a.txt',get_pty=True)

stdin.write("testn")

# stdin.write("n")

stdin.close()

print(stderr.read())

ssh.close()

实例2

用户微信目录因常年累月用户上传图片较多,造成硬盘资源将耗尽,但客户要求至少保存一个月的文件,

然而几十万张图片的文件夹,不论是打开,排序删除都是非常消耗服务器性能的,因为装载这10多个G的文件必然会造成内存和CPU的大量消耗,因此写了python脚本来自动删除30天以前的文件

代码如下:

#-*- coding:utf-8 -*-

import os

import time

import datetime

f = list(os.listdir(‘G:\qtp‘))

for i in range(len(f)):

filedate = os.path.getmtime(‘G:\qtp\‘ + f[i])

time1 = datetime.datetime.fromtimestamp(filedate).strftime(‘%Y-%m-%d‘)

date1 = time.time()

num1 =(date1 - filedate)/60/60/24

if num1 >= 30:

os.remove(‘G:\qtp\‘ + f[i])

print("已删除文件:%s : %s" % (time1, f[i]))

else:

print("there are no file more than 30 days")

结果:

240d5c4ec7f8cb6f13dde51c0df67a60.png

总结

以上就是本文关于python删除服务器文件代码示例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

最后

以上就是斯文路灯为你收集整理的python 删除服务器文件,python删除服务器文件代码示例的全部内容,希望文章能够帮你解决python 删除服务器文件,python删除服务器文件代码示例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(87)

评论列表共有 0 条评论

立即
投稿
返回
顶部