rhg Posted February 8, 2006 Posted February 8, 2006 (edited) My first UDF; simple and self-explanatory I think. Hope you guys like it.The idea for me was to run this routine and on the return of 0 (int)display a MsgBox with the missing file(s) and trigger an Exit.Updated : 2006-02-08 14:30Arguments:$fileDir is the directory you want to search for the required file(s)$fileStr is either A) a single file name or a delimited string offile names$del is the delimiter one is using to delimit the file names in $fileStr; Default is comma.Returns:1 on Success : 0 on FailureNotes:If the function doesn't find the file(s), then it pops-up an error dialog withthe list of missing files and only the missing files.Func FilesRequired($fileDir,$fileStr,$del=",") Local $f, $tmpx="" If StringInStr($fileStr,$del)>0 Then Local $cs = StringSplit($fileStr,$del) Local $x For $x = 1 To $cs[0] $f = $fileDir&$cs[$x] If Not FileExists($f) Then $tmpx = $tmpx &"* "&$f&@CRLF EndIf Next Else $f = $fileDir&$fileStr If Not FileExists($f) Then $tmpx = $tmpx &"* "&$f&@CRLF EndIf EndIf If StringLen($tmpx)>0 Then $f = "The Following Required Files " $f = $f & "are Missing or Corrupt:" $f = $f & @CRLF&@CRLF&$tmpx&@CRLF $f = $f & "Exiting With Errors..." MsgBox(48,"Critical Error",$f) Return 0 Else Return 1 EndIf EndFuncExample UsageDim $mypath = @ScriptDir&"\" Dim $required = "myfile1.ini,myfile2.exe,myfile3.jpg" If FilesRequired($mypath,$required,",")=1 Then MsgBox(48,"Yay","All Required Files There") ; Continue processing here EndIf Exit Edited February 8, 2006 by rhg
Nuffilein805 Posted February 8, 2006 Posted February 8, 2006 nice idea don't know what i need it for, but there certainly is need for it you could modify your script so it looks where are those files on your pc - i'd like to have that my little chatmy little encryption toolmy little hidermy unsafe clickbot
Oxin8 Posted February 8, 2006 Posted February 8, 2006 maybe have it so you can use any delimeter you choose? not like it's that hard to change but maybe just as an option to make it more versatile. I'm pretty sure the If Not FileExists($f)=1 Then Is the same as: If Not FileExists($f) Then and If FileExists($f)<>1 Then Just some ideas. Here's what I'd do... No offense or anything. Func FilesRequired($fileDir,$fileStr,$del=",") Local $f, $tmpx="" If StringInStr($fileStr,",")>0 Then Local $cs = StringSplit($fileStr,$del) Local $x For $x = 1 To $cs[0] $f = $fileDir&$cs[$x] If Not FileExists($f) Then $tmpx = $tmpx &"* "&$f&@CRLF EndIf Next Else $f = $fileDir&$fileStr If Not FileExists($f) Then $tmpx = $tmpx &"* "&$f&@CRLF EndIf EndIf If StringLen($tmpx)>0 Then $f = "The Following Required Files" $f = $f & "are Missing or Corrupt:" $f = $f & @CRLF&@CRLF&$tmpx&@CRLF $f = $f & "Exiting With Errors..." MsgBox(48,"Critical Error",$f) Return 0 Else Return 1 EndIf EndFunc ~My Scripts~ *********_XInput UDF for Xbox 360 ControllerSprayPaint_MouseMovePlus
rhg Posted February 8, 2006 Author Posted February 8, 2006 Thanks Nuffilein805 for the feedback. Thinking about your suggestion...what do you propose exactly? Like the function uses the data in $fileStr to perform a HDD search and returns the path for each file? Or just returns 1 for 'Yes I'm Here' or 0 'No I'm Not', and just handle user notification 'on 0'? Not sure what you want it to do exactly but I am up to improving it. Just let me know.
rhg Posted February 8, 2006 Author Posted February 8, 2006 Thanks Oxin8 for the feedback. Think I was replying when you posted but thats a good idea and no offense taken. I'll update the function after replying.If Not FileExists($f) ThenIsn't this a boolean expression? Wasn't sure how AI handles -1/1/0 in boolean expressions. Is the same as VBScript?
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