Printing directory of documents in Finder

I have tons of documents listed in Finder since 2006. Can I print the list/directory of all the documents. I do not want to print out all the documents. HELP!

One easy way would be to get TextWrangler (free). Then, in addition to having a good text editor, dragging a folder to a new document will give you an indented listing of the file names.

Similar Messages

  • When I try to take a print out from documents in my mailbox, it tell´s me that it can not find the printer??. I have just downloaded epson iprint since I have an Epson wifi printer. The iprint did find and succesfully installed the printer.

    When I try to take a print out from documents in my mailbox, it tell´s me that it can not find the printer??. I have just downloaded epson iprint since I have an Epson wifi printer. The iprint did find and successful installed the printer. Somebody who knows what to do?

    Chances are you Can only print from the app from the printer maker
    And where you are Trying to print from May only work with AirPrint able printers which the epson would not be

  • History report page prints before printing each new document?cc=us

    How do i stop my HP Officejet 6700  Premium from printing a history report page before printing each new document, using Windows 7 & Using Microsoft Word? When I open a document and print it, it prints a history including: File Name; Directory; Template; Title; Subject; Keywords; Comments; creation Date; Change Number; Last Saved On; Last Saved By; Total Editing; Last Printed On; As of Last Printing....
    Everything worked perfectly for a year, then I had to reinstall the printer because I deleted it by mistake. I cary it with me when I travel to meetings and didn't have my install disk, so I had to download the install software. I haven't changed any settings in Word, but it appears that the report is generated from Word.
    Help will be appreciated. I can't find any other topic like mine to see an already presented solution.
    This question was solved.
    View Solution.

    Hi,
    The report indeed being generated by Word and not by the pritner driver.
    As you did not clarify your MS Office version I included the steps for Word 2010, I believe the same should also apply for Word 2007:
    From Word click the File menu, then select Options.
    Select Display from the left pane.
    Under the Printing Options sections, uncheck the box next to Print document properties.
    Click OK and try printing again.
    If you cannot find the specific option, please clarify your exact Microsoft Wiord version.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Printing a PDF document using Java 1.4 Printing API

    Hi,
    When I tried to print a PDF document using JAVA 1.4 Printing API, I got the following exception.
    Exception in thread "main" sun.print.PrintJobFlavorException: invalid flavor
    at sun.print.Win32PrintJob.print(Win32PrintJob.java:290)
    at Printing.main(Printing.java:40)
    I am able to print the same PDF document using Acrobat reader.
    Is PDF format not supported in JAVA 1.4 printing API? or is something wrong in my code?
    here is the sample JAVA program that I was using
    import javax.print.*;
    import javax.print.attribute.*;
    import java.io.*;
    public class Printing {
    public static void main(String args[]) throws Exception {
    String filename = args[0];
    PrintRequestAttributeSet pras =
    new HashPrintRequestAttributeSet();
    DocFlavor flavor = DocFlavor.INPUT_STREAM.PDF;
    PrintService defaultService =
    PrintServiceLookup.lookupDefaultPrintService();
    DocPrintJob job = defaultService.createPrintJob();
    FileInputStream fis = new FileInputStream(filename);
    DocAttributeSet das = new HashDocAttributeSet();
    Doc doc = new SimpleDoc(fis, flavor, das);
    job.print(doc, pras);
    Thread.sleep(10000);
    System.exit(0);
    Thank you
    Sumana

    Here's a pure Java solution (that works!):
    http://www.mycgiserver.com/~zhouwu/pdf/readme.html
    The caveats are:
    - prints only to the default printer
    - requires a properties file located in the home directory
    my workaround for the last:
         * Print a PDF file to the default printer (might consume lots of memory!).
         * <p>
         * <b>Required:</b>
         * <ul>
         * <li>a file "acrobat.properties" needs to be in the working directory. The content is:
    <table align="center" bgcolor="#E0E0E0" border=1 cellpadding="10" cellspacing="0"><tr><td><pre style="margin-top:0; margin-bottom:0">
    #com.adobe.acrobat.Viewer Properties
    #Wed Oct 29 20:34:05 PST 2003
    com.adobe.acrobat.AcceptedLicAgreement=true
    com.adobe.acrobat.Fax_Fine_Mode=true
    com.adobe.acrobat.Find\:FindAll=false
    com.adobe.acrobat.Find\:FindBackwards=false
    com.adobe.acrobat.Find\:FindWholeWord=false
    com.adobe.acrobat.Find\:MatchCase=false
    com.adobe.acrobat.Open_Dialog_Directory=C\:\\temp\\
    com.adobe.acrobat.Open_Dialog_File=itext.pdf
    com.adobe.acrobat.Print_Method_Known=true
    com.adobe.acrobat.Shrink_To_Fit=false
    com.adobe.acrobat.SitePreferencesURL=file\://localhost/C\:/pdf/acrobat-site.properties
    com.adobe.acrobat.Use_Print_Server=false
    com.adobe.acrobat.util.fontDirectories=C\:\\Winnt\\Fonts
    com.adobe.acrobat.util.fontIgnoreExtensions=.fon;.pfm;.ini;.lst;.txt;.doc;.ttmap;.z;.enc;.dir;.afm;.f3b;.pfa;.spd;.ps;.bepf;.map;.alias;.scale;.all;.upr
    </pre></td></tr></table>
         * <li>The JAR files PDFPrinter.jar, acrobat.jar and MRJToolkitStubs.zip in the CLASSPATH.
         * </ul>
         * <p>
         * Note: the file "acrobat.properties" is expected to be in the user's home directory. As this is not always feasible,
         * the system property "user.home" is mapped to "user.dir" for the time of execution.
         * @param fileName Name of PDF file to print.
         * @throws Exception on error.
         * @see <a href="http://www.mycgiserver.com/~zhouwu/pdf/readme.html">PDF Server (Silent) Printing</a>
        public void printPDF(String fileName) throws Exception {
            String oldHome = System.getProperty("user.home");
            System.setProperty("user.home", System.getProperty("user.dir"));
            PDFPrinter vi = new PDFPrinter();
            vi.activate();
            vi.setDocumentInputStream(new FileInputStream(fileName));
            vi.printAll();
            System.setProperty("user.home", oldHome);
        }//printPDF()I just need the following additional files in my CLASSPATH: PDFPrinter.jar, acrobat.jar and MRJToolkitStubs.zip. Despite the note at the site above that "printing quality is not very good", i can't agree: the print quality is quite good. Not perfect, but acceptable for most uses.
    (Tested on Windows 2000 SP4, J2SE 1.4.2_03, hp laserjet 2300dn)

  • Printing Multiple Word Documents?

    HI,
    I'm using Panther 10.3.9. How do I print a batch of MS Word .doc files ? I've created a desktop printer and when I drag a bunch of .doc files to it only one file prints! argh... I dragged a folder to the desktop printer and I got a directory listing ... double argh....
    Is it possible to do this? And is it possible to do this without seeing the print dialog each time ???
    Thanks,
    Pete

    Hi, Peter.
    I would also like to be able to print multiple documents straight from the Desktop by dragging and dropping or using a keyboard shortcut. It's been so long since I used OS 8 or OS 9 that I can't remember if I was dreaming or not, but I'm pretty sure that in the old OSes you could just drag and drop or click Cmnd+P and print away.
    I've tried using Automator to make an application (have'nt got the hang of it yet), using a desktop printer and searching for an Applescript on the net; all to no avail. It seems that Word behaves differently depending on whether it's open already and whether there is already a blank document open in it or not. That is, if it has to launch before printing, it opens a new, blank document and prints that (or sometimes does nothing even though the printer launches). However, if Word is already open (but has no other document open) it will print all the documents. As you say, though, you have to then select "print" from the resulting dialogue box for each document. So, it's hardly elegant. As someone said elsewhere, it's more of a "bug" than a "feature".
    So, what we need (as far as I can see) is an Automator appplication or workflow (or AppleScript) where 1. you drop a bunch of Word (or other) documents into a folder; 2. Word launches; 3. the new, blank document that automatically opens is closed (by some kind of "close all open windows command"); 4. the documents are sent to the current default printer;5. they all print.
    Surely all the publishers who use Macs must use this kind of thing all the time.
    I wrote to the guys at CocoaTech (who make Path Finder, an excellent Finder substitute) about this problem and they said they'd consider adding the feature, but at the same time seemed a bit confused about exactly what this feature was or why anyone would want to use it.
    Does anyone know of a solution to this?
    Cheers
    Matt
    iBook G4   Mac OS X (10.4.5)  

  • Printing Microsoft Office documents

    I migrated from an iMac 24" with Snow Leopard to an iMac 27" with Mountain Lion. The result is that I cannot print Microsoft Office documents, nor Open Office, nor iWork documents, nor Adobe acrobat professional documents. All the programs crash and close suddenly when I try, even before the "choose printer" frame
    The only way is to open the documents with the application "Anteprima" (i do not know the english  name, could be Preview?) but this is a cumbersome procedure and altering the original formats.
    Does anybody else have the same problem?
    Renato Gaudio

    To access your user library
    Hold down the option key while using the Finder "Go To Folder" command. Enter ~`/Library. Delete the .plist(s) for the application.
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    http://osxdaily.com/2011/07/04/show-library-directory-in-mac-os-x-lion/
    You might want to bookmark the command. I had to use it again after I installed 10.8.2. I have also been informed that if you drag the user library to Finder it will remain visible.

  • I'm trying to print  an Ancestry document from an iPad 2 using air print onto a Canon 5350 (one of the printers ok'd by Apple) I am unable to change the print orientation from portrait to landscape.  That is I change it in printer settings but no use.

    I'm trying to print an Ancestry document from an iPad 2 using air print.  The printer is a Canon MG5350 (on the Apple approved list) I have no difficulty printing but only in portrait format.  I've tried changing printer preferences from my computer but even though the Canon accepts the changes it will not print landscape - can anyone advise please?

    Hi,
    How do you connect the printer to the XP machine ? If USB, you need to make that machine as a Print server. Please try this:
       http://techtips.salon.com/make-windows-computer-pr​int-server-11914.html
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How can I print out a document on an '05 version of iLife (iWorkPages)  es)

    How can I print out a document on an '05 version of iLife that includes iWork? I want to make a document in Pages and print it. It tells me that I have to buy Pages, but doesn't tell me where to go to do that.

    Assuminh your profile is correct that you are running OS X 10.5.8, you need the version of Pages from iWork 09.
    Try to find the CD for it on eBay
    Allan

  • I am using Acrobat Pro 9.5.5 on Windows 8.1. I cannnot print an oversize document.

    I am trying to print an oversize document 950mm x 2300mm.  With the printer set to "fit to printed area" and "oversized pages" and size "backdrop 950x2300" I get a print preview image in the printer window.  When I click OK the save window appears.  I select the file name and location in the usual way and click OK.  The error message "the document could not be printed" appears. On the next click I get "There were no pages selected to print".
    The system is working fine for standard sized prints.  Indeed I can print the problem document to oversized A0.  Any suggestions or recommendations would be much appreciated.

    Hi Questor,
    If this happens to a specific PDF file, try the Print as Image option in Acrobat. Click the Advanced button in the Print dialog box to find this option. It could be that this specific PDF is not well formed.
    If that doesn't work, please repair or update Acrobat (choose Help > Repair, or Help > Update).
    Lastly, if you are using a networked printer, dry dropping and remapping the printer connection. (Some users have reported this error occurring because of a faulty network connection to the printer.)
    Please let us know now it goes.
    Best,
    Sara

  • Can't open 'Documents' in Finder

    I cannot open the 'documents' files in finder for last couple of days . Every time I am clicking on "documents" in the 'finder' sidebar, finder crashes and stops working and I need to relaunch it.
    Therefore I have to use 'all my files' tab which is time consuming.
    My Device Information: Macbook Air 11 inch (mid 2013), OS X Yosemite (Version 10.10)

    Assuming you can, click on your home directory (it is the one with the 'house' icon so you can see all the folders in your home directory - including Documents. Can you open Documents from there?
    If so: drag the Documents icon from the sidebar until you see a little cloud icon and release it. That deleted Documents from the sidebar. Now drag the Documents folder from your drive space into the sidebar to create a new alias of it. Test and see that it works.
    If not: your drive directory is damaged. Restart while holding the command & R keys to enter Recovery mode. Select Disk Utility and your hard drive icon. Select Repair Disk.

  • Printing a Numbers document

    I want to print a Numbers document from an iPad2 to a WiFi Canon MX882 printer. I have Numbers Version 1.5 on my iPad and Numbers '08 on my new iMac with Lion. I've tried sending the document to Numbers on the iMac but it says I must use Numbers '09. That's a $19.99 purchase and the problem is that a new "Numbers '12" should be coming out soon, so I don't want to jump the gun. I've heard that some Apps will work, but I don't know which one is the best. I've tried to find Printopia but haven't been able to find it. I tried sending it as a PDF by email and I was able to print but it was not full size. I'm also wondering if using iCloud would help. Any help would be appreciated.

    No matter what I did, when I tried to drag a rectangle around the unwanted pages, all my wanted pages were highlighted too. It was like one big graphic object. If I tried to drag the corners to reduce the size of the table, it did just that made everything smaller, but didn’t get rid of the extra rows and columns that I did not want.
    So I fumbled around and finally realized that there was a “tab” at the bottom of the last row. What did it do? I still don’t really know but when I clicked on that tab and dragged down I got more rows. So I tried to drag the tab up and delete down. I couldn’t get this method to work with rows but I was able to get rid of extra columns using the “tab” to the right of the last column.
    In trying to drag , I realized I could highlight rows. I did so and hit the delete key. I finally got my table down to four pages just the way I wanted it! Don’t ask me how.
    Try the simple bit of highlighting unwanted parts and using the delete key.
    Also the Sheet Inspector (2nd from left) tells you how many pages in your table. Mine was 12! I got it down to four. But I somehow managed to add one more row and was back up to five. Used the “tab” and deleted the unwanted row and went back to four pages.
    I will be sure to look at the Sheet Inspector before I print.
    I don’t know if any of this helps.
    AC

  • Cannot Print Some PDF documents

    Hello All,
    I am unable to print some PDF documents to my printer HP (Laserjet Pro 400 color MFP). The MAC OS is Moutain Lion. The documents look like they are printing but no print job is produced and no error message is given.
    Has anyone else experienced this issue?
    Many Thanks

    Hello eorilly5,
    Thank you for using Apple Support Communities!
    It sounds like you are unable to print from anything from your printer.
    I would recommend these troublehsooting steps from the article named Troubleshooting printer issues in OS X found here http://support.apple.com/kb/TS3147.
    Make sure that the printer is powered on, has ink / toner, and that there are no alerts on the printer’s control panel. Note: If you cannot clear an alert on the printer's control panel, stop here and check the printer's documentation or contact the manufacturer for support.
    Ensure the printer is properly connected to a USB port on the Mac or AirPort base station / Time Capsule. If the printer is a network-capable printer, make sure that it is properly connected to your home network.
    Use Software Update to find and install the latest available updates. If an update is installed, see if the issue persists.
    Open the Print & Scan pane or Print & Fax (Snow Leopard) pane in System Preferences.
    Delete the affected printer, then add the printer again.
    If the issue persists, try these additional steps:
    Reset the printing system, then add the printer again.
    If the issue still persists, reset the printing system again.  Download and install your printer's drivers. Then, add the printer again.
    Contact the printer vendor or visit their website for further assistance.
    All the very best,
    Sterling

  • Trying to allocate for printer grip on document, help plz!

    Okay, hey, new to the board here, excuse me if the format of my question is confusing :S
    Im using Illustrator to create a thank you note card that has to fit within exact dimensions on an 8.5'' X 11 '' sheet of paper that is divided into quarters. the bottom quarters on a horizontal plane have an embossed border set 5/8ths of an inch in from the sides (of the quarter page)
    I have my design layed out on an 8.5'' X 11'' document, i ran a test print through the printer and realized i hadnt compensated for the printer's grip. this was on ordinary stock paper. After printing, I noticed that the borders along the outside edges of the whole document (Not on the inside along the quartered sections borders) were pushed in an extra distance, say an extra 1/4'' inwards.
    When I do print the actual document, I will be running the paper through the bypass (its cardstock and i dont want it to curl).
    Now heres my question...
    What should I do to compensate for this?
    Should I make a document that has the distance of the printer grip subtracted from it's dimensions (will that even work)? would compensating on the dimensions of my already existing 8.5''X11'' document solve this?
    am i entirely misguided? is there a solution built into adobe illustrator or a printer to solve this? maybe someone could point me to a tutorial? I searched myself and didnt find what the info I required maybe someone has a solution of their own?
    please help! thank you in advance!
    also, if anyone looking into this needs clarification, lemme know !

    The way to cheat is to set the grip end to be the inner surface of the card and then keep the text back far enough to not get cut off.  Something like this

  • Something I noticed after printing out a document

    I was just wondering why you have to save a file again after you print out a document. Does printing change the file or something? I also noticed that this isn't just in Pages. It's in most apps that have to do with printing, like TextEdit and Numbers.

    The date & time printed gets embedded in the file. I thought you could find it in Get Info but I can't find it right now in Leopard.

  • Printing - part of document missing

    I have been using Pages successfully for months and printing OK to an Epson Stylus CX5000.
    I have just changed my printer (to get better photo quality) to a Canon Pixma MP810.
    But now when I print existing Pages documents that print out perfectly on the Epson, I get a bit missing.
    Specifically - the files are A4 colour pages consisting of 2 columns of black text and one colour photo. Under the colour picture there is a solid rectangle of yellow with a black type caption printing over the top. The solid yellow rectangle prints as 2 thin lines of yellow under the black type. The photo itself and which is on the same page prints perfectly.
    If I run a print nozzle test - the test pattern and colour is perfect.
    If I copy the solid yellow rectangle and paste it elsewhere on the page - then it doesn't print at all.
    If I convert the Pages doc to a PDF - I get the same printed result; the yellow rectangle does not print.
    If I create a new Pages document consisting of just 3 solid rectangles of Cyan, Magenta and Yellow - yes you guessed it - the yellow rectangle does not print! BUT if I create the same document in 'Appleworks' - it prints correctly.
    On all the Pages document with yellow rectangles that do not print - they show correctly in Print Preview.
    Anyone got any idea what is going on here? I have the latest 'Pages' software upgrade installed.

    Hi @matcatch,
    Welcome to the HP Forums!
    I noticed that your HP Deskjet 1510 is only printing part of a document. I am happy to help!
    For further assistance, I will need some additional information:
    If you are using a Windows or Mac Operating System, and the version number. To find the exact version, visit this link. Whatsmyos.
    If the printer is able to make copies. Copy Text or Mixed Documents.
    If you are using Windows, please try the HP Print and Scan Doctor, and please let me know what happens.
    Hope to hear from you soon!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

Maybe you are looking for

  • Changes are not getting reflected in Process Chain after changes.

    Hello, I have modified a Process Chain in Development environment. I have created one new infopackage and included it in the process chain. I have also added two new change run variants in the process chain. I have collected the process chain and inf

  • Using ACCESS2000 DoCmd.SendObject , , acFormatRTF to write e-mail does not appear in OUT BOX

    OUTLOOK does not work with WINDOWS 8.1. I am trying THUNDERBIRD. I can send emails if they are created in THUNDERBIRD. I need to create them in ACCESS 2000 using DoCmd.SendObject , , acFormatRTF . The code runs but the e-mails do not appear in THUNDE

  • Page not appearing properly

    The bottom portion of pages is not loading properly. Ie: Cntrl+F or bottom of facebook chat windows are only slightly showing. So, help?

  • XI receiving scenario example

    Hi Friends, I had searched on sdn for different scenario in XI , most of them are for sendin message out of system, but I didnt got any scenario which shows receiving of message from external system... So can you please provide some link where I can

  • Dynamic proxy API

    where can i learn about Dynamic Proxy API,.. can anyone provide me links for the same... thank you...