I’m pretty new to creating Fixlets and this may have been answered in another thread but I can’t find a good way of searching for it. So here is my dilemma, I want to read the last modified time of a file on multiple servers. Most of them in are in the same path on each server but there are one or two that have a different path. How can I get the Fixlet to check one place and if it doesn’t find it, move to the next folder and check there before sending an error flag? It’s probably a simple “if (file a) doesn’t exist then check (file b) path”.
if (exists file("c:\xmlexample.txt")) then modification time of file("c:\xmlexample.txt") as string else if (exists file("c:\setup\xmlexample.txt")) then modification time of file("c:\setup\xmlexample.txt") as string else "N/A"
if (exists file("c:\xmlexample.txt")) then modification time of file("c:\xmlexample.txt") as string else if (exists file("c:\setup\xmlexample.txt")) then modification time of file("c:\setup\xmlexample.txt") as string else "N/A"