Help for this page

Select Code to Download


  1. or download this
        $inputPathPrefix = "C:/Temp/xml";
        @inputfiles = (
    ...
            $inputPathPrefix . "/test2.xml",
            $inputPathPrefix . "/test3.xml"
        );
    
  2. or download this
            @inputfiles = (
                @inputfiles,
    ...
                $inputPathPrefix . "/test6.xml",
                $inputPathPrefix . "/test7.xml"
            )
    
  3. or download this
            push(@inputfiles, $inputPathPrefix . "/test4.xml");
            push(@inputfiles, $inputPathPrefix . "/test5.xml");
            push(@inputfiles, $inputPathPrefix . "/test6.xml");
            push(@inputfiles, $inputPathPrefix . "/test7.xml");