lhy6456210 发表于 2011-3-25 23:57:04

(已解决)au3能监控写入.txt文件的数据吗?

本帖最后由 lhy6456210 于 2011-3-27 23:08 编辑

问一个问题,能不能监控指定的.txt文件,如果有数据写入.txt文件,把写入的数据截取出来,返回到指定的au3的gui上;



最好是能用AU3搞定的方法:

小A 发表于 2011-3-26 00:28:41

bbs.wglm.net 帮你整好了
http://bbs.wglm.net/forum-viewthread-tid-119051-fromuid-206031.html

lhy6456210 发表于 2011-3-26 11:59:45

小A啊!世界真小啊!

gzh888666 发表于 2011-3-27 11:52:49

正好了!正需要

gzh888666 发表于 2011-3-27 11:58:11

Global $Edit1,$filepath = @ScriptDir & '\wglm.txt' , $fileDetection = ''
GUICreate("txt文件监控", 426, 323, 192, 114)
$Edit1 = GUICtrlCreateEdit("", 0, 0, 425, 321)
GUISetState(@SW_SHOW)
If Not FileExists($filepath) Then FileWrite($filepath ,'bbs.wglm.net');如果wglm.txt文件不存在时,自动创建.
While 1
$file = FileRead($filepath);读取wglm.txt文本
If $file <> $fileDetection Then;当文件发生变化时;写入到Edit控件
$fileDetection = $file;将读取的数据赋值给$fileDetection
GUICtrlSetData($Edit1, $file);写入wglm.txt文本到Edit1控件
EndIf
Sleep(600)
WEnd

zitoy 发表于 2011-3-27 20:29:04

要完全与题相符,有点难度

别情 发表于 2011-6-25 18:46:19

学习!!!!!!

qiziyun7410 发表于 2012-12-28 17:20:15

呵呵!!!!!!!
页: [1]
查看完整版本: (已解决)au3能监控写入.txt文件的数据吗?