Yes, app that would be the best way and as you can see, that's how I posted the samples. But I think a point is being missed here...
What I WANT is a program that can open a file that contains extended character text, and hit the "Print" button and it prints it as it is displayed. Period. Done.
Specifically the pseudo-graphical output from "tree".
Why?
1- In the business in which I am employed, I find it convenient to give clients a handy list of files I have archived for them. I have an entry in my context menu that when I right click a folder, I select "print folder tree" and it hits a .bat file that looks like this:
@echo off
tree /A %1 > "%temp%\dirlist"
start /w notepad /p "%temp%\dirlist"
del "%temp%\dirlist"
exit
And it prints a nice little tree of my files, with "+" signs at the nodes and so on. .
Go ahead, try it, it's fun...
Works, right? So what's the problem, you ask...
2- it bugs me that I can't figure out how to print out the nice little line diagram that 'tree' gives you without the '/A' flag. I can see it in the command box, I can see it when I open in notepad, but it .does.not.print.
I have tried all kind of Directory printing applications, so PLEASE don't go there, I have tried them all, and what I want is this one little simple thing, I can't believe there is NO application that can simply DO it.
I happened upon the idea of using .nfo viewers because they can read those extended characters and HOPEFULLY one of them will also be able to print it. (even more hopefully, automatically when I call it with a '/p' flag like notepad so I don't have to re-invent the wheel I am currently running on...)
I am currently working on the idea to use Autohotkey to parse the output from my little script into .rtf code and replace the node symbols with the cute little folder icons from Wingdings and print it out from Wordpad. That would be neat, eh?
And besides, the .nfo style of ascii art looks like fun...