Popular Post Danyfirex Posted June 18, 2018 Popular Post Share Posted June 18, 2018 (edited) Hello guys yestarday I was needing to print a Directory Tree Scheme But I don't like windows command Tree symbols so I just did this small function that allow me to extend the symbols. It's not optimized. Code: expandcollapse popup#include <File.au3> #include <Array.au3> #include <String.au3> Local $aSymbols[][] = [['\', '|', '-'] _ , ['⚽', '│', '─'] _ , ['⬮', '⁞', '.'] _ , ['⬯', '︴', '~'] _ , ['■', '║', '═'] _ , ['├', '│', '─'] _ , ['╞', '│', '─'] _ , ['┠', '┋', '─'] _ , ['〻', '︱', '─'] _ , ['★', '│', '─'] _ , ['♦', '│', '─'] _ , ['☑', '│', '─']] ;~ _ArrayDisplay($aSymbols) Local $sDirectoryPath = @ScriptDir & "\TestTree" Local $sTree = "" Local $sFileName = "" For $i = 0 To UBound($aSymbols) - 1 $sTree = _CreateDirTree($sDirectoryPath,$aSymbols[$i][0],$aSymbols[$i][1],$aSymbols[$i][2]) $sFileName = @ScriptDir & "\TreeScheme-" & String($i + 1) & ".txt" FileDelete($sFileName) FileWrite($sFileName, $sTree) ConsoleWrite($sTree & @CRLF) Next ;Danyfirex - 18/06/2018 Func _CreateDirTree($sDirectoryPath, $sFolderBar = "\", $sTreeBar = "|", $sSeparator = "-", $iNSeparator = 3) Local $aFiles = _FileListToArrayRec($sDirectoryPath, "*", $FLTAR_FILESFOLDERS, $FLTAR_RECUR, $FLTAR_SORT) Local $sFilePath = "" Local $sAttrib = "" Local $sFolderName = "" Local $sIndentation = "" Local $sRelativePath = "" Local $sFinalTree = "" If $aFiles[0] Then Local $sNode = $aFiles[1] For $i = 1 To $aFiles[0] $sRelativePath = $aFiles[$i] $sFilePath = $sDirectoryPath & "\" & $sRelativePath $sAttrib = FileGetAttrib($sFilePath) If StringInStr($sAttrib, "D") Then $sFolderName = _GetFolderName($sFilePath) $sIndentation = _GenerateIndentNodes($sDirectoryPath, $sRelativePath, $sFolderBar, $sTreeBar, $sSeparator) ;~ ConsoleWrite($sIndentation & $sFolderName & @CRLF) $sFinalTree &= $sIndentation & $sFolderName & @CRLF Else $sFolderName = _GetFileName($sFilePath) $sIndentation = _GenerateIndentNodes($sDirectoryPath, $sRelativePath, $sFolderBar, $sTreeBar, $sSeparator) ;~ ConsoleWrite($sIndentation & $sFolderName & @CRLF) $sFinalTree &= $sIndentation & $sFolderName & @CRLF EndIf Next EndIf Return $sFinalTree EndFunc ;==>_CreateDirTree Func _CheckFolderMore2Files($sDirectoryPath) Local $iRet = 0 Local $hSearch = FileFindFirstFile($sDirectoryPath & "\" & "*.*") If $hSearch = -1 Then Return $iRet EndIf Local $sFileName = "" Local $iCount = 0 While 1 $sFileName = FileFindNextFile($hSearch) If @error Then ExitLoop EndIf $iCount += 1 If $iCount > 1 Then $iRet = $iCount ExitLoop EndIf WEnd FileClose($hSearch) Return $iCount EndFunc ;==>_CheckFolderMore2Files Func _GenerateIndentNodes($sDirectoryPath, $sFolderRelativePath, $sFolderBar, $sTreeBar, $sSeparator, $iNSeparator = 3) Local $aSplit = StringSplit($sFolderRelativePath, "\") If $aSplit[0] > 1 Then Local $sBars = "" Local $iFiles = "" Local $sFilePath = "" For $i = 1 To $aSplit[0] - 1 $sFilePath = _ArrayToString($aSplit, "\", 1, $i) $iFiles = _CheckFolderMore2Files($sDirectoryPath & "\" & $sFilePath) If @error Then ContinueLoop EndIf If $iFiles > 1 Or $aSplit[0] - 1 = $i Then $sBars &= ($i = $aSplit[0] - 1) ? $sFolderBar & _StringRepeat($sSeparator, $iNSeparator) : $sTreeBar & _StringRepeat(" ", $iNSeparator) Else $sBars &= " " & _StringRepeat(" ", $iNSeparator) EndIf Next Return $sBars EndIf Return "" EndFunc ;==>_GenerateIndentNodes Func _GetFileName($sFullPath) Local $aSplit = StringSplit($sFullPath, "\") If $aSplit[0] Then Return $aSplit[$aSplit[0]] EndIf EndFunc ;==>_GetFileName Func _GetFolderName($sFullPath) Local $aSplit = StringSplit($sFullPath, "\") If $aSplit[0] Then Return $aSplit[$aSplit[0]] EndIf EndFunc ;==>_GetFolderName Some Outputs: expandcollapse popupCustomers \---Daniel Rivero | \---CustomerInformation.txt | \---BankChromeAutomation | | \---1.0.0.0 | | \---bin | | | \---x64 | | | | \---BankChromeAutomation.exe | | | \---x86 | | | | \---BankChromeAutomation.exe | | | | \---readme.txt | | \---build | | | \---Linux | | | \---Mac | | | \---Windows | | \---examples | | | \---Example-1 | | | \---Example-2 | | \---include | | \---libs | | | \---AutoIt.dll | | \---resources | | | \---Folder.ico | | \---source | | | \---Source.au3 | | \---tests | | | \---Test-1.au3 | | | \---Test-2.au3 | | \---tools | | | \---sometools.txt | \---DownloadInvoices | | \---ProjectInformation.txt | | \---database | \---ScrapperGoogle | | \---ProjectInformation.txt | | \---html \---Neil Diamond | \---AudioDownloader | | \---1.0.0.0 | | | \---bin | | | | \---x64 | | | | | \---BankChromeAutomation.exe | | | | \---x86 | | | | | \---BankChromeAutomation.exe | | | | | \---readme.txt | | | \---build | | | | \---Linux | | | | \---Mac | | | | \---Windows | | | \---examples | | | | \---Example-1 | | | | \---Example-2 | | | \---include | | | \---libs | | | | \---AutoIt.dll | | | \---resources | | | | \---Folder.ico | | | \---source | | | | \---Source.au3 | | | \---tests | | | | \---Test-1.au3 | | | | \---Test-2.au3 | | | \---tools | | | | \---sometools.txt | | \---1.0.0.1 | | | \---bin | | | | \---x64 | | | | \---x86 | | | | | \---readme.txt | | | \---build | | | | \---Linux | | | | \---Mac | | | | \---Windows | | | \---examples | | | | \---Example-1 | | | | \---Example-2 | | | \---include | | | \---libs | | | | \---AutoIt.dll | | | \---resources | | | | \---Folder.ico | | | \---source | | | | \---Source.au3 | | | \---tests | | | | \---Test-1.au3 | | | | \---Test-2.au3 | | | \---tools | | | | \---sometools.txt | \---TagsWriter | | \---ProjectInformation.txt | | \---database Personal \---CreateFolderTree \---DialogAutomate \---WebDriver expandcollapse popupCustomers ■═══Daniel Rivero ║ ■═══CustomerInformation.txt ║ ■═══BankChromeAutomation ║ ║ ■═══1.0.0.0 ║ ║ ■═══bin ║ ║ ║ ■═══x64 ║ ║ ║ ║ ■═══BankChromeAutomation.exe ║ ║ ║ ■═══x86 ║ ║ ║ ║ ■═══BankChromeAutomation.exe ║ ║ ║ ║ ■═══readme.txt ║ ║ ■═══build ║ ║ ║ ■═══Linux ║ ║ ║ ■═══Mac ║ ║ ║ ■═══Windows ║ ║ ■═══examples ║ ║ ║ ■═══Example-1 ║ ║ ║ ■═══Example-2 ║ ║ ■═══include ║ ║ ■═══libs ║ ║ ║ ■═══AutoIt.dll ║ ║ ■═══resources ║ ║ ║ ■═══Folder.ico ║ ║ ■═══source ║ ║ ║ ■═══Source.au3 ║ ║ ■═══tests ║ ║ ║ ■═══Test-1.au3 ║ ║ ║ ■═══Test-2.au3 ║ ║ ■═══tools ║ ║ ║ ■═══sometools.txt ║ ■═══DownloadInvoices ║ ║ ■═══ProjectInformation.txt ║ ║ ■═══database ║ ■═══ScrapperGoogle ║ ║ ■═══ProjectInformation.txt ║ ║ ■═══html ■═══Neil Diamond ║ ■═══AudioDownloader ║ ║ ■═══1.0.0.0 ║ ║ ║ ■═══bin ║ ║ ║ ║ ■═══x64 ║ ║ ║ ║ ║ ■═══BankChromeAutomation.exe ║ ║ ║ ║ ■═══x86 ║ ║ ║ ║ ║ ■═══BankChromeAutomation.exe ║ ║ ║ ║ ║ ■═══readme.txt ║ ║ ║ ■═══build ║ ║ ║ ║ ■═══Linux ║ ║ ║ ║ ■═══Mac ║ ║ ║ ║ ■═══Windows ║ ║ ║ ■═══examples ║ ║ ║ ║ ■═══Example-1 ║ ║ ║ ║ ■═══Example-2 ║ ║ ║ ■═══include ║ ║ ║ ■═══libs ║ ║ ║ ║ ■═══AutoIt.dll ║ ║ ║ ■═══resources ║ ║ ║ ║ ■═══Folder.ico ║ ║ ║ ■═══source ║ ║ ║ ║ ■═══Source.au3 ║ ║ ║ ■═══tests ║ ║ ║ ║ ■═══Test-1.au3 ║ ║ ║ ║ ■═══Test-2.au3 ║ ║ ║ ■═══tools ║ ║ ║ ║ ■═══sometools.txt ║ ║ ■═══1.0.0.1 ║ ║ ║ ■═══bin ║ ║ ║ ║ ■═══x64 ║ ║ ║ ║ ■═══x86 ║ ║ ║ ║ ║ ■═══readme.txt ║ ║ ║ ■═══build ║ ║ ║ ║ ■═══Linux ║ ║ ║ ║ ■═══Mac ║ ║ ║ ║ ■═══Windows ║ ║ ║ ■═══examples ║ ║ ║ ║ ■═══Example-1 ║ ║ ║ ║ ■═══Example-2 ║ ║ ║ ■═══include ║ ║ ║ ■═══libs ║ ║ ║ ║ ■═══AutoIt.dll ║ ║ ║ ■═══resources ║ ║ ║ ║ ■═══Folder.ico ║ ║ ║ ■═══source ║ ║ ║ ║ ■═══Source.au3 ║ ║ ║ ■═══tests ║ ║ ║ ║ ■═══Test-1.au3 ║ ║ ║ ║ ■═══Test-2.au3 ║ ║ ║ ■═══tools ║ ║ ║ ║ ■═══sometools.txt ║ ■═══TagsWriter ║ ║ ■═══ProjectInformation.txt ║ ║ ■═══database Personal ■═══CreateFolderTree ■═══DialogAutomate ■═══WebDriver expandcollapse popupCustomers ├───Daniel Rivero │ ├───CustomerInformation.txt │ ├───BankChromeAutomation │ │ ├───1.0.0.0 │ │ ├───bin │ │ │ ├───x64 │ │ │ │ ├───BankChromeAutomation.exe │ │ │ ├───x86 │ │ │ │ ├───BankChromeAutomation.exe │ │ │ │ ├───readme.txt │ │ ├───build │ │ │ ├───Linux │ │ │ ├───Mac │ │ │ ├───Windows │ │ ├───examples │ │ │ ├───Example-1 │ │ │ ├───Example-2 │ │ ├───include │ │ ├───libs │ │ │ ├───AutoIt.dll │ │ ├───resources │ │ │ ├───Folder.ico │ │ ├───source │ │ │ ├───Source.au3 │ │ ├───tests │ │ │ ├───Test-1.au3 │ │ │ ├───Test-2.au3 │ │ ├───tools │ │ │ ├───sometools.txt │ ├───DownloadInvoices │ │ ├───ProjectInformation.txt │ │ ├───database │ ├───ScrapperGoogle │ │ ├───ProjectInformation.txt │ │ ├───html ├───Neil Diamond │ ├───AudioDownloader │ │ ├───1.0.0.0 │ │ │ ├───bin │ │ │ │ ├───x64 │ │ │ │ │ ├───BankChromeAutomation.exe │ │ │ │ ├───x86 │ │ │ │ │ ├───BankChromeAutomation.exe │ │ │ │ │ ├───readme.txt │ │ │ ├───build │ │ │ │ ├───Linux │ │ │ │ ├───Mac │ │ │ │ ├───Windows │ │ │ ├───examples │ │ │ │ ├───Example-1 │ │ │ │ ├───Example-2 │ │ │ ├───include │ │ │ ├───libs │ │ │ │ ├───AutoIt.dll │ │ │ ├───resources │ │ │ │ ├───Folder.ico │ │ │ ├───source │ │ │ │ ├───Source.au3 │ │ │ ├───tests │ │ │ │ ├───Test-1.au3 │ │ │ │ ├───Test-2.au3 │ │ │ ├───tools │ │ │ │ ├───sometools.txt │ │ ├───1.0.0.1 │ │ │ ├───bin │ │ │ │ ├───x64 │ │ │ │ ├───x86 │ │ │ │ │ ├───readme.txt │ │ │ ├───build │ │ │ │ ├───Linux │ │ │ │ ├───Mac │ │ │ │ ├───Windows │ │ │ ├───examples │ │ │ │ ├───Example-1 │ │ │ │ ├───Example-2 │ │ │ ├───include │ │ │ ├───libs │ │ │ │ ├───AutoIt.dll │ │ │ ├───resources │ │ │ │ ├───Folder.ico │ │ │ ├───source │ │ │ │ ├───Source.au3 │ │ │ ├───tests │ │ │ │ ├───Test-1.au3 │ │ │ │ ├───Test-2.au3 │ │ │ ├───tools │ │ │ │ ├───sometools.txt │ ├───TagsWriter │ │ ├───ProjectInformation.txt │ │ ├───database Personal ├───CreateFolderTree ├───DialogAutomate ├───WebDriver expandcollapse popupCustomers ╞───Daniel Rivero │ ╞───CustomerInformation.txt │ ╞───BankChromeAutomation │ │ ╞───1.0.0.0 │ │ ╞───bin │ │ │ ╞───x64 │ │ │ │ ╞───BankChromeAutomation.exe │ │ │ ╞───x86 │ │ │ │ ╞───BankChromeAutomation.exe │ │ │ │ ╞───readme.txt │ │ ╞───build │ │ │ ╞───Linux │ │ │ ╞───Mac │ │ │ ╞───Windows │ │ ╞───examples │ │ │ ╞───Example-1 │ │ │ ╞───Example-2 │ │ ╞───include │ │ ╞───libs │ │ │ ╞───AutoIt.dll │ │ ╞───resources │ │ │ ╞───Folder.ico │ │ ╞───source │ │ │ ╞───Source.au3 │ │ ╞───tests │ │ │ ╞───Test-1.au3 │ │ │ ╞───Test-2.au3 │ │ ╞───tools │ │ │ ╞───sometools.txt │ ╞───DownloadInvoices │ │ ╞───ProjectInformation.txt │ │ ╞───database │ ╞───ScrapperGoogle │ │ ╞───ProjectInformation.txt │ │ ╞───html ╞───Neil Diamond │ ╞───AudioDownloader │ │ ╞───1.0.0.0 │ │ │ ╞───bin │ │ │ │ ╞───x64 │ │ │ │ │ ╞───BankChromeAutomation.exe │ │ │ │ ╞───x86 │ │ │ │ │ ╞───BankChromeAutomation.exe │ │ │ │ │ ╞───readme.txt │ │ │ ╞───build │ │ │ │ ╞───Linux │ │ │ │ ╞───Mac │ │ │ │ ╞───Windows │ │ │ ╞───examples │ │ │ │ ╞───Example-1 │ │ │ │ ╞───Example-2 │ │ │ ╞───include │ │ │ ╞───libs │ │ │ │ ╞───AutoIt.dll │ │ │ ╞───resources │ │ │ │ ╞───Folder.ico │ │ │ ╞───source │ │ │ │ ╞───Source.au3 │ │ │ ╞───tests │ │ │ │ ╞───Test-1.au3 │ │ │ │ ╞───Test-2.au3 │ │ │ ╞───tools │ │ │ │ ╞───sometools.txt │ │ ╞───1.0.0.1 │ │ │ ╞───bin │ │ │ │ ╞───x64 │ │ │ │ ╞───x86 │ │ │ │ │ ╞───readme.txt │ │ │ ╞───build │ │ │ │ ╞───Linux │ │ │ │ ╞───Mac │ │ │ │ ╞───Windows │ │ │ ╞───examples │ │ │ │ ╞───Example-1 │ │ │ │ ╞───Example-2 │ │ │ ╞───include │ │ │ ╞───libs │ │ │ │ ╞───AutoIt.dll │ │ │ ╞───resources │ │ │ │ ╞───Folder.ico │ │ │ ╞───source │ │ │ │ ╞───Source.au3 │ │ │ ╞───tests │ │ │ │ ╞───Test-1.au3 │ │ │ │ ╞───Test-2.au3 │ │ │ ╞───tools │ │ │ │ ╞───sometools.txt │ ╞───TagsWriter │ │ ╞───ProjectInformation.txt │ │ ╞───database Personal ╞───CreateFolderTree ╞───DialogAutomate ╞───WebDriver expandcollapse popupCustomers ♦───Daniel Rivero │ ♦───CustomerInformation.txt │ ♦───BankChromeAutomation │ │ ♦───1.0.0.0 │ │ ♦───bin │ │ │ ♦───x64 │ │ │ │ ♦───BankChromeAutomation.exe │ │ │ ♦───x86 │ │ │ │ ♦───BankChromeAutomation.exe │ │ │ │ ♦───readme.txt │ │ ♦───build │ │ │ ♦───Linux │ │ │ ♦───Mac │ │ │ ♦───Windows │ │ ♦───examples │ │ │ ♦───Example-1 │ │ │ ♦───Example-2 │ │ ♦───include │ │ ♦───libs │ │ │ ♦───AutoIt.dll │ │ ♦───resources │ │ │ ♦───Folder.ico │ │ ♦───source │ │ │ ♦───Source.au3 │ │ ♦───tests │ │ │ ♦───Test-1.au3 │ │ │ ♦───Test-2.au3 │ │ ♦───tools │ │ │ ♦───sometools.txt │ ♦───DownloadInvoices │ │ ♦───ProjectInformation.txt │ │ ♦───database │ ♦───ScrapperGoogle │ │ ♦───ProjectInformation.txt │ │ ♦───html ♦───Neil Diamond │ ♦───AudioDownloader │ │ ♦───1.0.0.0 │ │ │ ♦───bin │ │ │ │ ♦───x64 │ │ │ │ │ ♦───BankChromeAutomation.exe │ │ │ │ ♦───x86 │ │ │ │ │ ♦───BankChromeAutomation.exe │ │ │ │ │ ♦───readme.txt │ │ │ ♦───build │ │ │ │ ♦───Linux │ │ │ │ ♦───Mac │ │ │ │ ♦───Windows │ │ │ ♦───examples │ │ │ │ ♦───Example-1 │ │ │ │ ♦───Example-2 │ │ │ ♦───include │ │ │ ♦───libs │ │ │ │ ♦───AutoIt.dll │ │ │ ♦───resources │ │ │ │ ♦───Folder.ico │ │ │ ♦───source │ │ │ │ ♦───Source.au3 │ │ │ ♦───tests │ │ │ │ ♦───Test-1.au3 │ │ │ │ ♦───Test-2.au3 │ │ │ ♦───tools │ │ │ │ ♦───sometools.txt │ │ ♦───1.0.0.1 │ │ │ ♦───bin │ │ │ │ ♦───x64 │ │ │ │ ♦───x86 │ │ │ │ │ ♦───readme.txt │ │ │ ♦───build │ │ │ │ ♦───Linux │ │ │ │ ♦───Mac │ │ │ │ ♦───Windows │ │ │ ♦───examples │ │ │ │ ♦───Example-1 │ │ │ │ ♦───Example-2 │ │ │ ♦───include │ │ │ ♦───libs │ │ │ │ ♦───AutoIt.dll │ │ │ ♦───resources │ │ │ │ ♦───Folder.ico │ │ │ ♦───source │ │ │ │ ♦───Source.au3 │ │ │ ♦───tests │ │ │ │ ♦───Test-1.au3 │ │ │ │ ♦───Test-2.au3 │ │ │ ♦───tools │ │ │ │ ♦───sometools.txt │ ♦───TagsWriter │ │ ♦───ProjectInformation.txt │ │ ♦───database Personal ♦───CreateFolderTree ♦───DialogAutomate ♦───WebDriver expandcollapse popupCustomers ☑───Daniel Rivero │ ☑───CustomerInformation.txt │ ☑───BankChromeAutomation │ │ ☑───1.0.0.0 │ │ ☑───bin │ │ │ ☑───x64 │ │ │ │ ☑───BankChromeAutomation.exe │ │ │ ☑───x86 │ │ │ │ ☑───BankChromeAutomation.exe │ │ │ │ ☑───readme.txt │ │ ☑───build │ │ │ ☑───Linux │ │ │ ☑───Mac │ │ │ ☑───Windows │ │ ☑───examples │ │ │ ☑───Example-1 │ │ │ ☑───Example-2 │ │ ☑───include │ │ ☑───libs │ │ │ ☑───AutoIt.dll │ │ ☑───resources │ │ │ ☑───Folder.ico │ │ ☑───source │ │ │ ☑───Source.au3 │ │ ☑───tests │ │ │ ☑───Test-1.au3 │ │ │ ☑───Test-2.au3 │ │ ☑───tools │ │ │ ☑───sometools.txt │ ☑───DownloadInvoices │ │ ☑───ProjectInformation.txt │ │ ☑───database │ ☑───ScrapperGoogle │ │ ☑───ProjectInformation.txt │ │ ☑───html ☑───Neil Diamond │ ☑───AudioDownloader │ │ ☑───1.0.0.0 │ │ │ ☑───bin │ │ │ │ ☑───x64 │ │ │ │ │ ☑───BankChromeAutomation.exe │ │ │ │ ☑───x86 │ │ │ │ │ ☑───BankChromeAutomation.exe │ │ │ │ │ ☑───readme.txt │ │ │ ☑───build │ │ │ │ ☑───Linux │ │ │ │ ☑───Mac │ │ │ │ ☑───Windows │ │ │ ☑───examples │ │ │ │ ☑───Example-1 │ │ │ │ ☑───Example-2 │ │ │ ☑───include │ │ │ ☑───libs │ │ │ │ ☑───AutoIt.dll │ │ │ ☑───resources │ │ │ │ ☑───Folder.ico │ │ │ ☑───source │ │ │ │ ☑───Source.au3 │ │ │ ☑───tests │ │ │ │ ☑───Test-1.au3 │ │ │ │ ☑───Test-2.au3 │ │ │ ☑───tools │ │ │ │ ☑───sometools.txt │ │ ☑───1.0.0.1 │ │ │ ☑───bin │ │ │ │ ☑───x64 │ │ │ │ ☑───x86 │ │ │ │ │ ☑───readme.txt │ │ │ ☑───build │ │ │ │ ☑───Linux │ │ │ │ ☑───Mac │ │ │ │ ☑───Windows │ │ │ ☑───examples │ │ │ │ ☑───Example-1 │ │ │ │ ☑───Example-2 │ │ │ ☑───include │ │ │ ☑───libs │ │ │ │ ☑───AutoIt.dll │ │ │ ☑───resources │ │ │ │ ☑───Folder.ico │ │ │ ☑───source │ │ │ │ ☑───Source.au3 │ │ │ ☑───tests │ │ │ │ ☑───Test-1.au3 │ │ │ │ ☑───Test-2.au3 │ │ │ ☑───tools │ │ │ │ ☑───sometools.txt │ ☑───TagsWriter │ │ ☑───ProjectInformation.txt │ │ ☑───database Personal ☑───CreateFolderTree ☑───DialogAutomate ☑───WebDriver expandcollapse popupCustomers ┠───Daniel Rivero ┋ ┠───CustomerInformation.txt ┋ ┠───BankChromeAutomation ┋ ┋ ┠───1.0.0.0 ┋ ┋ ┠───bin ┋ ┋ ┋ ┠───x64 ┋ ┋ ┋ ┋ ┠───BankChromeAutomation.exe ┋ ┋ ┋ ┠───x86 ┋ ┋ ┋ ┋ ┠───BankChromeAutomation.exe ┋ ┋ ┋ ┋ ┠───readme.txt ┋ ┋ ┠───build ┋ ┋ ┋ ┠───Linux ┋ ┋ ┋ ┠───Mac ┋ ┋ ┋ ┠───Windows ┋ ┋ ┠───examples ┋ ┋ ┋ ┠───Example-1 ┋ ┋ ┋ ┠───Example-2 ┋ ┋ ┠───include ┋ ┋ ┠───libs ┋ ┋ ┋ ┠───AutoIt.dll ┋ ┋ ┠───resources ┋ ┋ ┋ ┠───Folder.ico ┋ ┋ ┠───source ┋ ┋ ┋ ┠───Source.au3 ┋ ┋ ┠───tests ┋ ┋ ┋ ┠───Test-1.au3 ┋ ┋ ┋ ┠───Test-2.au3 ┋ ┋ ┠───tools ┋ ┋ ┋ ┠───sometools.txt ┋ ┠───DownloadInvoices ┋ ┋ ┠───ProjectInformation.txt ┋ ┋ ┠───database ┋ ┠───ScrapperGoogle ┋ ┋ ┠───ProjectInformation.txt ┋ ┋ ┠───html ┠───Neil Diamond ┋ ┠───AudioDownloader ┋ ┋ ┠───1.0.0.0 ┋ ┋ ┋ ┠───bin ┋ ┋ ┋ ┋ ┠───x64 ┋ ┋ ┋ ┋ ┋ ┠───BankChromeAutomation.exe ┋ ┋ ┋ ┋ ┠───x86 ┋ ┋ ┋ ┋ ┋ ┠───BankChromeAutomation.exe ┋ ┋ ┋ ┋ ┋ ┠───readme.txt ┋ ┋ ┋ ┠───build ┋ ┋ ┋ ┋ ┠───Linux ┋ ┋ ┋ ┋ ┠───Mac ┋ ┋ ┋ ┋ ┠───Windows ┋ ┋ ┋ ┠───examples ┋ ┋ ┋ ┋ ┠───Example-1 ┋ ┋ ┋ ┋ ┠───Example-2 ┋ ┋ ┋ ┠───include ┋ ┋ ┋ ┠───libs ┋ ┋ ┋ ┋ ┠───AutoIt.dll ┋ ┋ ┋ ┠───resources ┋ ┋ ┋ ┋ ┠───Folder.ico ┋ ┋ ┋ ┠───source ┋ ┋ ┋ ┋ ┠───Source.au3 ┋ ┋ ┋ ┠───tests ┋ ┋ ┋ ┋ ┠───Test-1.au3 ┋ ┋ ┋ ┋ ┠───Test-2.au3 ┋ ┋ ┋ ┠───tools ┋ ┋ ┋ ┋ ┠───sometools.txt ┋ ┋ ┠───1.0.0.1 ┋ ┋ ┋ ┠───bin ┋ ┋ ┋ ┋ ┠───x64 ┋ ┋ ┋ ┋ ┠───x86 ┋ ┋ ┋ ┋ ┋ ┠───readme.txt ┋ ┋ ┋ ┠───build ┋ ┋ ┋ ┋ ┠───Linux ┋ ┋ ┋ ┋ ┠───Mac ┋ ┋ ┋ ┋ ┠───Windows ┋ ┋ ┋ ┠───examples ┋ ┋ ┋ ┋ ┠───Example-1 ┋ ┋ ┋ ┋ ┠───Example-2 ┋ ┋ ┋ ┠───include ┋ ┋ ┋ ┠───libs ┋ ┋ ┋ ┋ ┠───AutoIt.dll ┋ ┋ ┋ ┠───resources ┋ ┋ ┋ ┋ ┠───Folder.ico ┋ ┋ ┋ ┠───source ┋ ┋ ┋ ┋ ┠───Source.au3 ┋ ┋ ┋ ┠───tests ┋ ┋ ┋ ┋ ┠───Test-1.au3 ┋ ┋ ┋ ┋ ┠───Test-2.au3 ┋ ┋ ┋ ┠───tools ┋ ┋ ┋ ┋ ┠───sometools.txt ┋ ┠───TagsWriter ┋ ┋ ┠───ProjectInformation.txt ┋ ┋ ┠───database Personal ┠───CreateFolderTree ┠───DialogAutomate ┠───WebDriver Zip File Version. CreateFolderTree.zip Saludos Edited June 18, 2018 by Danyfirex junkew, ptrex, coffeeturtle and 2 others 4 1 Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut Link to comment Share on other sites More sharing options...
qwert Posted June 18, 2018 Share Posted June 18, 2018 Nice idea. I see lots of potential, here. Thanks. (BTW, for anyone who hasn't worked with extended symbols, Encoding >> UTF-8 is needed for the Au3 file. I was reminded of that when my first attempt at just pasting into a file resulted in '?'s.) Link to comment Share on other sites More sharing options...
rcmaehl Posted June 18, 2018 Share Posted June 18, 2018 (edited) Isn't this limited to file output or Powershell out only since Command prompt is limited to ANSI? Edited June 18, 2018 by rcmaehl My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.My Projects WhyNotWin11Cisco Finesse, Github, IRC UDF, WindowEx UDF Link to comment Share on other sites More sharing options...
Earthshine Posted June 18, 2018 Share Posted June 18, 2018 works great! My resources are limited. You must ask the right questions Link to comment Share on other sites More sharing options...
Danyfirex Posted June 19, 2018 Author Share Posted June 19, 2018 @rcmaehl Most of the example work in the windows cmd. You can try it and add your own ANSI symbols. Thank you for your comments guys. Saludos Earthshine and coffeeturtle 2 Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut Link to comment Share on other sites More sharing options...
Earthshine Posted June 19, 2018 Share Posted June 19, 2018 @Danyfirex your work has saved me lots of time! Great verification tools came out of this when I auto test my installers and give us a trail to boot. nice work. Danyfirex 1 My resources are limited. You must ask the right questions Link to comment Share on other sites More sharing options...
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