Clever1mba Posted July 6, 2005 Posted July 6, 2005 (edited) Hello i got one command line tool that extract Websites FROM any filebut it extract websites to Only one file at time and save them in text filelike thisc:\>extractor.exe -files webistes.html > output.txt i want to know is it possible to using this tool with autoit it search all drives and multiple file like text, doc , html , htmhelp me if u have idea thanksssss Edited July 6, 2005 by asimzameer
scriptkitty Posted July 6, 2005 Posted July 6, 2005 (edited) I am not sure what exactly you are wanting. c:\>extractor.exe -files webistes.html > output.txtYou can have autoit run commandline tools easy:$output="output.txt" $webistes="webistes.html" run('c:\>extractor.exe -files ' & $webistes & ' > ' & $output)Now you can have it do multiple as well.; Shows the filenames of all files in the current directory $webistes = FileFindFirstFile("*.html"); what to look for $count=0 ; Check if the search was successful If $webistes = -1 Then MsgBox(0, "Error", "No files/directories matched the search pattern") Exit EndIf While 1 $file = FileFindNextFile($webistes) If @error Then ExitLoop $count=$count + 1 runwait('c:\>extractor.exe -files ' & $file & ' > ' & "output" & $count & ".txt") MsgBox(4096, "File:" & $file, "saved as:" & "output" & $count & ".txt") WEnd ; Close the search handle FileClose($webistes)I prefer using websites, but you might speak a different language. This is off the top of my head and not tested. You can also put in directory searches with a bit more work. Edited July 6, 2005 by scriptkitty AutoIt3, the MACGYVER Pocket Knife for computers.
blindwig Posted July 6, 2005 Posted July 6, 2005 Hello i got one command line tool that extract Websites FROM any filebut it extract websites to Only one file at time and save them in text filelike thisi want to know is it possible to using this tool with autoit it search all drives and multiple file like text, doc , html , htmhelp me if u have idea thanksssss<{POST_SNAPBACK}>How about like this:del output.txt for /f "tokens=*" %%A in ('dir *.html *.txt *.doc /s /b') do extractor.exe -files "%%A" >> output.txt My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
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