General discussion

  • Creator
    Topic
  • #2107760

    95/98 tip

    Locked

    by george.koziol ·

    I am looking for a recently published tip for what to do to build a process that would produce a print out list showing the names of a fikles in a directory. Thought I saved it but I can not find it. Sometime in the last couple of weeks???

All Comments

  • Author
    Replies
    • #3818117

      95/98 tip

      by lizzy ·

      In reply to 95/98 tip

      Here is that tip:
      PRINT A FOLDER LISTING FROM WITHIN EXPLORER
      You can add a useful feature to Windows 98’s Windows Explorer that allows you to print a listing of the folder’s contents without ever visiting the command prompt.
      First, create the following batch file on your computer. (You can copy and paste this text into Notepad.exe.)

      @echo
      off
      dir %1 /-p /o:gn > “%temp%\Listing”
      start /w notepad /p “%temp%\Listing”
      del “%temp%\Listing”
      exit
      Save this batch file in the Windows folder as List.bat. Start Explorer, click Tools | Folder Options, and select the File Types tab. Click File Folder | Edit | New. In the Action field, type Print Folder List, and in the Application Used To Perform Action field, select List.bat. Click OK to save your modifications.
      In Explorer, right-click the Folder To list and select the Print Folder List option. Notepad will open and the list will be printed to your default printer.

      • #3818108

        95/98 tip

        by george.koziol ·

        In reply to 95/98 tip

        This is EXACTLY what I was looking for. Thank you. This is the first time I used this service with you and am very pleased with the quick response.

    • #3818107

      95/98 tip

      by george.koziol ·

      In reply to 95/98 tip

      This question was closed by the author

Viewing 1 reply thread