Jump to content

edelator

Members
  • Posts

    3
  • Joined

  • Last visited

edelator's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Perfect Your the King! Thanks.
  2. Please help me understand the _XMLGetField function, it is not returning the field in my sample. For each Hotfix in the XML I want it to return the filename. Here is the XML: <Hotfix_List> <Build> <title>Hotfix Install for Windows XP</title> <version>1.0</version> </Build> <Hotfix> <name>KB885836</name> <filename>"WindowsXP-KB885523-x86-enu.exe"</filename> <switches>/quiet /passive /norestart</switches> </Hotfix> <Hotfix> <name>KB887742</name> <filename>WindowsXP-KB885836-x86-ENU.exe</filename> <switches>/quiet /passive /norestart</switches> </Hotfix> <Hotfix> <name>KB885836</name> <filename>WindowsXP-KB887742-x86-ENU.exe</filename> <switches>/quiet /passive /norestart</switches> </Hotfix> </Hotfix_List> Here is the Code: #include <_XMLDomWrapper.au3> #include <Array.au3> $sXMLFile = "Hotfix.xml" $result = _XMLFileOpen($sXMLFile) if $result = 0 then Exit Local $nodeCount = _XMLGetNodeCount ("//Hotfix_List/*") If $nodeCount > 0 Then Local $x, $z, $sRet = _XMLSelectNodes ("//Hotfix_List/Hotfix") If IsArray($sRet) Then For $x = 1 To $sRet[0] If $sRet[$x] = "Hotfix" Then msgbox(0,"Test",$sRet[$x]) msgbox(0,"Test","Filename: " & _XMLGetField("//Hotfix_List/Hotfix/filename")) EndIf Next EndIf EndIf Exit
  3. Hi, I see in an old posting in the IdeaLab a proposal to implement a DirGetTime function or modifying the FileGetTime function to work with Folders: http://www.autoitscript.com/forum/index.ph...wtopic=8200&hl= Was this ever implemented? Can I use this? If not does anyone have a workaround to get a Folder created date?
×
×
  • Create New...