Jump to content

Search the Community

Showing results for tags 'Far'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Total Commander manager have DiskDir plugin which can create LST files with list of files (catalog). There is also better plugin DiskDirExtended which is compatible but also lists contents of archive files. http://www.totalcmd.net/plugring/diskdir_extended.html http://www.ghisler.com/plugins.htm --> DiskDir In Far Manager there can be these LST files treated as archives with help of my LstDump utility. http://www.farmanager.com/ To enable browsing in LST in the FAR panels include content of "custom.ini(lst).add" file to the "c:\program files\far\plugins\multiarc\formats\custom.ini" file having removed any older [LST] section from there, then place LSTDUMP.EXE in any directory from the %PATH% variable and reload the FAR Files in archive LstDump.zip: custom.ini(lst).add Example.lst Example.out LstDump.au3 There is also compiled version LstDump.exe -> LstDump_exe.zip LstDump.au3 #AutoIt3Wrapper_Res_Language=1029 #AutoIt3Wrapper_Res_Description=DiskDir LST Dumper #AutoIt3Wrapper_Res_Comment=Designed for Far managers MultiArc plugin #AutoIt3Wrapper_Res_FileVersion=1.0 #AutoIt3Wrapper_Res_LegalCopyright=Copyright © 2011 Petr Zednik #AutoIt3Wrapper_Res_Field=Author|Petr Zednik <petr.zednik@volny.cz> #AutoIt3Wrapper_Res_Field=Name of product|LstDump #AutoIt3Wrapper_Change2CUI=y #AutoIt3Wrapper_UseX64=n #NoTrayIcon Global $user32 = DllOpen('user32.dll') $title = _ 'DiskDir LST Dumper 1.0' & @CRLF & _ 'Copyright (C) 2011 Petr Zednik <petr.zednik@volny.cz>' & @CRLF & _ 'This software is freeware' ; as parameter is expected LST file If $CmdLine[0] > 0 Then ListEntries($CmdLine[1]) Else Output($title) Output('USAGE: LstDump <lst_file>') Output('Example: LstDump test.lst') EndIf DllClose($user32) Exit Func ListEntries($lst_file) Local $dir Output($title) Output('Listing entries...') Output('---') $text = FileRead($lst_file) $text = StringSplit($text, @CRLF, 1) $count = 0 For $i = 2 To $text[0] ; skip first line $line = $text[$i] If $line = '' Then ContinueLoop $line = StringSplit($line, @TAB) ; $name & @TAB & $size & @TAB & $date & @TAB & $time If StringRight($line[1],1) = '\' Then $name = $line[1] $dir = $name Else $name = $dir & $line[1] EndIf Output($name & @TAB & $line[2] & @TAB & $line[3] & @TAB & $line[4]) $count += 1 Next Output('---') Output('Total objects: ' & $count) EndFunc Func Output($text) ConsoleWrite(Ansi2Oem($text) & @CRLF) EndFunc Func Ansi2Oem($text) $text = DllCall($user32,'Int','CharToOem','str',$text,'str','') Return $text[2] EndFunc I use LST files for catalogizing of external media/other computers/directories for later quick searching/comparing. LstDump.zip LstDump_exe.zip
×
×
  • Create New...