鱼C论坛

 找回密码
 立即注册
查看: 1935|回复: 3

[技术交流] 实时检查文本追加的新内容

[复制链接]
发表于 2020-6-2 16:33:07 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#!/usr/bin/env python3
#coding:utf-8

import threading
import os
from time import sleep

def writefile(file):
    os.system('for /l %i in (1,1,20) do (@timeout /t 1 >nul&echo 正在写入新的一行:%i >> '+ file + ')') #调用批处理写入文件
    
def readfile(filestream):
    filestream.seek(0,2) #移到文件末尾
    while True:
        line = filestream.readline()
        if line:
            yield line
        else:
            sleep(0.5)
    
def threa(f):
    count = 1
    with open(f) as fs:
        for i in readfile(fs):
            print('\n文件写入了新的内容:',i)
            if count == 20:
                os.system('taskkill /f /pid ' + str(os.getpid()))
            count += 1

f = r'd:\test.txt'
if not os.path.exists(f): #文件不存在,创建空文件
    with open(f, 'w') as f:
        pass

th = []
th.append(threading.Thread(target = writefile, args = (f,)))
th.append(threading.Thread(target = threa, args = (f,)))

for i in range(len(th)):
    th[i].start()
    
for i in range(len(th)):
    th[i].join()
文件写入了新的内容: 正在写入新的一行:18


D:\GIN\py>()

文件写入了新的内容: 正在写入新的一行:19


文件写入了新的内容: 正在写入新的一行:20

成功: 已终止 PID 为 7924 的进程。

请按任意键继续. . .
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-6-2 18:45:29 | 显示全部楼层
本帖最后由 赚小钱 于 2020-6-2 18:48 编辑

很有想法,不过,是 fsnotify 不好用吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-6-2 21:18:15 | 显示全部楼层
赚小钱 发表于 2020-6-2 18:45
很有想法,不过,是 fsnotify 不好用吗

不会。感觉要学的东西好多啊!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-2 21:45:47 From FishC Mobile | 显示全部楼层
每次看楼主的代码都觉得有点新奇
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-20 22:44

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表