Alexxander Posted May 19, 2014 Share Posted May 19, 2014 Hi i'am making a small script that detects if a file is changed on my site this script is working fine if i keep running it every 10 seconds it will detect if the file 0.mp4 is changed #include <FTPEx.au3> $hOpen = _FTP_Open('MyFTP Control') $hConn = _FTP_Connect($hOpen, "ftp.mysite", "myuser", "mypass") _FTP_FileGet($hConn,"/htdocs/0.mp4","temp.mp4") If FileRead("temp.mp4") <> FileRead("0RAW.mp4") Then ConsoleWrite("this is if") Local $Ftpc = _FTP_Close($hConn) Local $Ftpo = _FTP_Close($hOpen) but when i use a loop it will not detect the changing anymore #include <FTPEx.au3> $hOpen = _FTP_Open('MyFTP Control') $hConn = _FTP_Connect($hOpen, "ftp.0fees.us", "0fe_14780533", "Devilmaycry") while 1 _FTP_FileGet($hConn,"/htdocs/0.mp4","temp.mp4") If FileRead("temp.mp4") <> FileRead("0RAW.mp4") Then ConsoleWrite("this is if") WEnd Local $Ftpc = _FTP_Close($hConn) Local $Ftpo = _FTP_Close($hOpen) it will keep running and will never console write any ideas ? Link to comment Share on other sites More sharing options...
Palestinian Posted May 19, 2014 Share Posted May 19, 2014 Try putting everything inside your loop while 1 $hOpen = _FTP_Open('MyFTP Control') $hConn = _FTP_Connect($hOpen, "ftp.0fees.us", "0fe_14780533", "Devilmaycry") _FTP_FileGet($hConn,"/htdocs/0.mp4","temp.mp4") If FileRead("temp.mp4") <> FileRead("0RAW.mp4") Then ConsoleWrite("this is if") Local $Ftpc = _FTP_Close($hConn) Local $Ftpo = _FTP_Close($hOpen) WEnd Try using = instead of <> and your consol will get spammed Alexxander 1 Link to comment Share on other sites More sharing options...
Jfish Posted May 19, 2014 Share Posted May 19, 2014 Another approach could be to use the AdlibRegister function to have the function check with whatever time you specify rather than a loop (which will hog resources) or running the entire script. Build your own poker game with AutoIt: pokerlogic.au3 | Learn To Program Using FREE Tools with AutoIt Link to comment Share on other sites More sharing options...
BrewManNH Posted May 19, 2014 Share Posted May 19, 2014 You should put a sleep in that loop, it's constantly trying to download the file and read it. Another thing, you don't have the file overwrite option set so it isn't going to delete the local file and overwrite it, ever. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
Palestinian Posted May 19, 2014 Share Posted May 19, 2014 You should put a sleep in that loop, it's constantly trying to download the file and read it. Another thing, you don't have the file overwrite option set so it isn't going to delete the local file and overwrite it, ever. $bFailIfExists [optional] True: do not overwrite existing (default = False). Doesn't that mean that it overwites by default? Link to comment Share on other sites More sharing options...
BrewManNH Posted May 19, 2014 Share Posted May 19, 2014 Doesn't that mean that it overwites by default? Ooops, you're right, I read it backwards. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
Alexxander Posted May 20, 2014 Author Share Posted May 20, 2014 thank you guys u r so helpfull Link to comment Share on other sites More sharing options...
Geir1983 Posted May 20, 2014 Share Posted May 20, 2014 Maybe you should just check date created or something in your file instead of downloading the complete file? _FTP_ListToArrayEx Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now