在研发闲暇时间,将代码过程经常用的一些代码段收藏起来,下边代码是关于Windows下Python获取磁盘空闲空间并写入日志的代码,希望对各位朋友有较大用。
import time
import win32file文章来源:https://www.toymoban.com/news/detail-401609.html
run = True
logfile = open(’.\log.out’,‘w+’);#open log file
input = raw_input(“Input a string for disk name like ‘d:’ or other:”)#input a disk name
while run:
sectorsPerCluster, bytesPerSector, numFreeClusters, totalNumClusters =
win32file.GetDiskFreeSpace(input)
logfile.write("%s %s FreeSpace is %d MBytesn" % (time.asctime(),input,freespace));#write log
print time.asctime(),input,“FreeSpace is”,freespace,“MBytes”#output to screen
time.sleep(3)#wait 3 second
logfile.close();#close log file文章来源地址https://www.toymoban.com/news/detail-401609.html
到了这里,关于Windows下Python获取磁盘空闲空间并写入日志的代码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!