Howto find file containing text on Mavericks 10.9

Can I search *.java files containing text "Navigator" starting at a specific folder searching all sub folders as well.
I have tried with Finder and with EasyFind with no luck.
Cheers
keimo

If all of the files exist in a convenient parent folder the solution is simple. Open the parent folder. The window has a search bar - type the search and press return. Now you should see a grey Search bar to select a folder - This Mac is selected by default. Click on the Parent folder name to restrain the search to this folder. This doesn't let you filter out folders within the parent but it is better than searching the entire drive.

Similar Messages

  • TS3140 I tried to order a book on iPhoto but got the following message from apple :  the file contains text with drop shadows. As a result, Apple is unable to process your order"  Does anyone know what this means and how to fix it?   Thanks!!

    I tried to order a book on iphoto but got the following message from Apple  : "the file contains text with drop shadows.  As a result Apple is unable to process your order"  Does anyone know what this means and how to fix it?  Thanks!! 

    Hello Katiebell62
    Check out the troubleshooting steps to try and resolve your issue with purchasing a book through iPhoto.
    iPhoto: Difficulty submitting a book, card, or calendar order
    http://support.apple.com/kb/TS2516
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • HT2531 Finder / Spotlight not finding files "containing ......."

    I have a file named with a persons name and i have multiple files containing that same name, however when i search for that name i only get the file named with that name, not files containing that name. Very annoying, any suggestions, it used to work until I ran low on disc space, I since freed space but it still does not work

    As baltwo eventually explained, you have to add the search criteria "System files" to your search, with the option "Include" selected, to find many items Spotlight otherwise excludes from search results. Alternately (& quite ridiculously), if your search is restricted to the parent folder containing the item, you don't need to add this.
    For example, if you open /Library in the Finder, enter "Desktop Pictures" in the search box, you won't get it in the results with the default "This Mac" location, but if you click "Library" for the location, you will. (Yes, many users think this is bizarre, "what were they thinking?" behavior.)
    What Spotlight considers "system files" is only slightly less bizarre, as you will probably discover once you start using it to broaden searches. For instance, Safari history items & Mail.app messages are not found unless you include system files, but many files like C Header Source files (in System/Library/Frameworks) are found without including system files in the search.
    When it was introduced in Tiger, Spotlight was supposed to be a next-generation search engine, capable of accurately guessing what you were looking for (& filtering out what you weren't) with near-sentient intelligence. I think almost anyone who used that version will agree it did not achieve that lofty goal. Apple apparently agreed, or at least listened to the complaints enough to realize it needed rethinking. Unfortunately, what its designers came up with for the Leopard rethink feels like an early beta version, full of hastily implemented, quirky features that never got sorted out before it was released.
    We can only hope that we won't have to wait for OS 10.6 for a more mature, less quirky version.

  • Find and replace text in multiple Photoshop files?

    Hi there,
    Let us say I have six Photoshop files: 1.psd, 2.psd, ..., 6.psd. All of these files contain the word “LoremIpsum” in random text layers, within each document. Is there a way I can search for “LoremIpsum” in all documents and replace it with “Dolor Sit Amet”, all in one go? This is just an example, I need to replace various words, not just one.
    I have tried "batch find and replace" software (including powerful tools like Power Grep) but they do not work with psd files… Is there a javascript of external plugin for this kind of task?
    Thanks!

    You’re welcome, advice given here is free.
    If you want to donate something nonetheless you could do so over at
    http://ps-scripts.com/bb/
    Many of the same people used to contribute there as here and I for one have benefitted considerably from their generous advice on Scripting issues.
    A Script can read (or create) txt files, but I do not have a lot of experience with this.
    This might work (amend the line »var theTexts = readPref ("….txt", false);« according to your txt-file’s path):
    // replace text elements in type layers;
    // 2013, use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
              for (var n = 0; n < app.documents.length; n++) {
                        app.activeDocument = app.documents[n];
                        app.activeDocument.suspendHistory("replace text", "main()")
    // the opertation;
    function main () {
              var myDocument = app.activeDocument;
              var theTexts = readPref ("….txt", false);
              var theArray1 = theTexts.slice(0, Math.round(theTexts.length/2));
              var theArray2 = theTexts.slice(Math.round(theTexts.length/2), theTexts.length);
              alert (theArray1.join("\n")+"\n\n\n"+theArray2.join("\n"))
              for (var b = 0; b < theArray1.length; b++) {
                        replaceText (theArray1[b], theArray2[b])
    ////// reoplace text //////
    function replaceText (replaceThis, replaceWith) {
    // =======================================================
    var idreplace = stringIDToTypeID( "replace" );
        var desc22 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref3 = new ActionReference();
            var idPrpr = charIDToTypeID( "Prpr" );
            var idreplace = stringIDToTypeID( "replace" );
            ref3.putProperty( idPrpr, idreplace );
            var idTxLr = charIDToTypeID( "TxLr" );
            var idOrdn = charIDToTypeID( "Ordn" );
            var idAl = charIDToTypeID( "Al  " );
            ref3.putEnumerated( idTxLr, idOrdn, idAl );
        desc22.putReference( idnull, ref3 );
        var idUsng = charIDToTypeID( "Usng" );
            var desc23 = new ActionDescriptor();
            var idfind = stringIDToTypeID( "find" );
            desc23.putString( idfind, replaceThis );
            var idreplace = stringIDToTypeID( "replace" );
            desc23.putString( idreplace, replaceWith );
            var idcheckAll = stringIDToTypeID( "checkAll" );
            desc23.putBoolean( idcheckAll, true );
            var idFwd = charIDToTypeID( "Fwd " );
            desc23.putBoolean( idFwd, true );
            var idcaseSensitive = stringIDToTypeID( "caseSensitive" );
            desc23.putBoolean( idcaseSensitive, false );
            var idwholeWord = stringIDToTypeID( "wholeWord" );
            desc23.putBoolean( idwholeWord, false );
            var idignoreAccents = stringIDToTypeID( "ignoreAccents" );
            desc23.putBoolean( idignoreAccents, true );
        var idfindReplace = stringIDToTypeID( "findReplace" );
        desc22.putObject( idUsng, idfindReplace, desc23 );
    executeAction( idreplace, desc22, DialogModes.NO );
    ////// read prefs file //////
    function readPref (thePath, binary) {
      if (File(thePath).exists == true) {
        var file = File(thePath);
        file.open("r");
        if (binary == true) {file.encoding= 'BINARY'};
        var theText = file.read();
        file.close();
        return String(theText).split(",")
    In this case the comma is used to split the text into Strings in Arrays, if your search/replace texts include commas you could use something else, I guess.

  • SSIS none text qualifier results in text file containing "_x003C_none_x003E"

    There is a bug in SSIS when exporting data from SQL to a comma delimited text file where you specified no text qualifier.
    This bug apparently only occurs when you develop the SSIS on a x64 win7 PC and copy the .dtsx file (windows explorer copy/paste) to network path of a x86 SQL server and schedule the job to run from SQL Agent on the same x86 SQL server.
    When the SSIS runs, the text file is written out containing text qualifier = "“_x003C_none_x003E".
    If you look at "
    _x003C_none_x003E", it actually means <none>.  x003C = "<" and x003E = ">".
    If you go into the SSIS package, double-click in the connection manager section to open the flat file connection manager editor and try to clear the text qualifier removing the <none>,
    the <none> value get added back in.
    The only work-around is to NOT open the
    flat file connection manager editor, but instead make the change using the property window and clear out any value in the TextQualifier field.
    Other similar problems occur when you actually want to put a real value in the text qualifier.  For explain if you select the double-quote as the text qualifier and copy to a
    x86 server and run, you end up with a text file containing the value "
    _x0022" around each field instead of a double quote.
    In my mind this is a serious bug, I did some research and other people have been having this same issue.
    FYI, the SQL server is currently SQL2008 with SP2.  I will try to get it updated to SP3/4 this weekend to see that will help.
    FYI2, when I am developing the SSIS using VS2008 and my local test/run is done through visual studio on my Dev PC (x64).  Everything works fine this way.  I do not have a instance of SQL on my machine so I did not test it running from SQL Agent
    on my PC.

    Todd,
    Sorry to revive an older post, but we are currently running into this problem...again, but this is happening on SQL Server 2008 R2 SSIS servers and the corresponding developer machines.
    Everything that I'm finding in forums and blogs pretty much points that this is an issue with build mismatches (i.e. one system not being caught up to the server while others are), but I have yet to find anything that really outlines how to properly rectify
    the situation and prevent it from happening going forward.
    Currently all but our production server (from a server perspective) are exactly the same version numbers (same CU applied).
    I can't really speak to all of the developer boxes, but mine matches all but the production server (production is showing a lower number than the expected 10.50.2500.0).
    As shown below, what is really odd is the second entry and last entry.  Second entry is showing SP1 as the generic identifier, but yet shows Build 7600.
    The bottom one shows RTM in the generic identifier, but yet shows Build 7601 Service Pack 1, and the version number isn't the expected 10.50.2500.0.
    SQL Server Version
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03     Standard Edition (64-bit)
    on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03     Standard Edition (64-bit)
    on Windows NT 6.1 <X64> (Build 7600: ) (Hypervisor)
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03     Standard Edition (64-bit)
    on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    Microsoft SQL Server 2008 R2 (RTM) - 10.50.1617.0 (X64)   Apr 22 2011 19:23:43     Standard Edition (64-bit)
    on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)

  • Help finding JAR files containing a specific class

    I Need to find the JAR file containing the java class/type com.sap.engine.frame.ServiceException
    <i><b>Frank</b></i>

    Hi Frank,
    The easiest solution will be searching for class names in Windows search like: Search for files *.jar and contains text xyz.class.
    If you find a particular jar then open it using WinZip and you can locate the class file.
    Regards,
    Ananth

  • Terminal command to move multiple files containing certain text

    Hi all.
    Still new to mac so I'm hoping for a softly softly approach.
    I have over 300GB of SD versions of HD content just taking up space on my iTunes drive. Now, I realise backing up such a large amount of data is going to need yet another drive (or a huge amount of DVDs!), and at the moment isn't urgent but could be at this rate. I have been trying to use the cp comand to copy all files containing (HD) in the filename into a subfolder so I can easily separate then select the SD versions to backup/delete as needed. I would replace cp with mv once I got it working. However, since the terminal appears to work differently to Windows Command Prompt I've been having difficulty with the wildcards.
    How would I write the following:
    copy all m4v files in [this directory] that contain (HD) in the filename to [new directory]
    I tried
    cp *(HD).m4v
    cp * (HD).m4v
    cp *" (HD)".m4v
    and many other permutations but they all kept coming up with no such file or directory errors. Any help appreciated.
    edit: would there be a way of writing it as: copy all m4v files in [this directory] that do not contain (HD) in the filename to [new directory]
    Message was edited by: HappyTrucker

    I find this terminal stuff interesting but also annoying as a newbie trying to get his head around it.
    That's where making it a script simplifies it.
    Try:
    Open TextEdit (Applications->TextEdit) and then: Format->Make Plain Text
    Then copy the code below (edit to suit your needs) and paste in TextEdit and save as AnyNameYouWant.command on the Desktop (you can move it anywhere you want later)
    #!/bin/bash
    find /Volumes/Videos/TV\ Shows/The\ West\ Wing/ -not -name '*(HD).m4v' -exec mv {} /Volumes/Videos/TV\ Shows/The\ West\ Wing/sdversions/  \;
    Now, open Terminal (Applications->Utilities), and make AnyNameYouWant.command executable by entering:
    chmod u+x Desktop/AnyNameYouWant.command
    Now you can just "click" AnyNameYouWant.command on the Desktop to run.
    Tony

  • How do I find file names containing special character

    hi all
    I need your help with a code that deals with finding file names containing special characters like * / \ : ? " |
    the reason is I am doing a project that transfer files and folders from Mac to Windows. But names containing above characters cant be moved to windows.
    the part of the code I write is like this
    set illegal_syntax to paragraphs of (do shell script "find " & quoted form of POSIX path of oneFolder & " -name '*'")
    if (illegal_syntax is not equal to {""}) then
    repeat with each_record in illegal_syntax
    do shell script "/usr/bin/ditto -c -k -rsrc --keepParent " & quoted form of each_record & space & quoted form of (each_record & ".zip")
    end repeat
    end if
    First of all that '' will gives me an error.
    Second, what i tried to do is once the file/folder is found, zip it at current location. But the problem is how can I zip it without the special character? or should I just give it a name, like "originalfile.zip";?
    Last, or maybe you have better idea to deal with this situation? BTW, I can not rename or delete the file/folder because customer won't allow me to do it.

    The backslash is used to escape characters in AppleScript, so if you want to use it in a string you need to escape the escape character, for example "\\*".
    You could set the name of the archive by replacing the illegal character with another one, such as an underscore:
    <pre title="this text can be pasted into the Script Editor" style="font-family: Monaco, 'Courier New', Courier, monospace; font-size: 10px; padding: 5px; border: 1px solid #000000; width: 720px; color: #000000; background-color: #FFDDFF; overflow: auto">set each_record to "some*file*name" -- example
    set {TempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, "*"}
    set the ItemList to text items of each_record
    set AppleScript's text item delimiters to "_"
    set each_record to the ItemList as text
    set AppleScript's text item delimiters to TempTID
    log each_record --> some_file_name
    </pre>

  • Conversion of PDF to WORD (a problem with a file containing Persian text)

    Converting/copying  a PDF file containing a persian text to WORD (.doc) gives a distorted  WORD document!  Could any one please tell me what I must do to have a  sound and neat WORD (.doc) version of a PDF file containg a Persian  text? I use Adobe Acrobat8 Professional and MS Office WORD 2007. So  many thanks in advance for your help.

    Converting/copying  a PDF file containing a persian text to WORD (.doc) gives a distorted  WORD document!  Could any one please tell me what I must do to have a  sound and neat WORD (.doc) version of a PDF file containg a Persian  text? I use Adobe Acrobat8 Professional and MS Office WORD 2007. So  many thanks in advance for your help.

  • How to upload a file which may contain text as well as image to the server using windows phone 8 application ?

    How to upload a file which may contain text as well as image  to the server using windows phone 8 application ?

    You're going to need to give way more detail about the situation before we can help.

  • How to read text file contain chinese character ?

    Hi XI Expert,
    I have scenario to read text file contain Chinese Character using sender file adapter. but every i was check from sxmb_moni all the chinese character looks different. and also the target file also i has changes.
    Please advise me how to maintaine the chinese character in PI 7.0 SP17.
    Thank You and Best Regards
    Fernand

    Hi,
    Refer these threads..
    Receiver file adapter corrupting characters
    Problem in converting special characters in input text file
    Here is one more useful guide..
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79fb42
    Regards,
    Sarvesh
    Edited by: Sarvesh Singh on Nov 17, 2008 3:47 PM

  • I have a pdf file which contains text if i copy all text and paste them into notpad and save file as .txt Is it change the ascii value of text ?

    I have a pdf file which contains text if i copy all text and paste them into notpad and save file as .txt Is it change the ascii value of text ?

    How to know character's encoding is ASCII?

  • Resulting Word File Contains All Jumbled Text?

    Just uploaded and converted my file using ExportPDF. Word file was created without issue. When it is opened all styles are maintained but text is jumbled:
    Bo!fnqmpzff!iboecppl!jt!b!nbovbm!uibu!dpoubjot!bo!fnqmpzfsÖt!xpsl!svmft!boe!qpmjdjft/!Ju!dbo!bmtp!dpoubjo!puifs! jogpsnbujpo!uibu!jt!vtfgvm!up!uif!fnqmpzff-!tvdi!bt!uif!cvtjofttÖt!ijtupsz-!jut!hpbmt-!boe !jut!dpnnjunfout!up dvtupnfst!ps!dpnnvojuz/
    How do I fix?

    Something to be mindful of is the item within our FAQ:
    Will Adobe ExportPDF convert both text and formatting information?Adobe ExportPDF is capable of exporting high quality information,  but the quality of your Word document depends on the quality of the PDF  file you start with. For instance, if your PDF file was originally  authored in Microsoft Word and converted to PDF using the PDF Maker  functionality in Adobe Acrobat® software, your PDF file contains a rich  set of information that can be captured by Adobe ExportPDF. This  includes relative positioning of tables, images, and even multicolumn  text, as well as page, paragraph, and font attributes. If your PDF file  was originally authored using simpler PDF generation methods, such as  “print to PDF” or “scan to PDF” options, Adobe ExportPDF will convert  any recognizable text and then use sophisticated conversion intelligence  to preserve as much of the page layout as possible.
    So while we are always trying to improve the service, there are many factors that could be influencing your result.

  • Mavericks Spotlight is Horrible -- I have to use my Windows 7 PC to find files that my MacAir with Mavericks cannot find -- what has happened to the famous Mac search feature?  It is almost useless!

    Why does Mavericks Spotlight not find files named, for example, Ono et al 2009, PNAS, 106(35), 14745-14750 - annotated when I use Ono as the search word.  I can find the file using the search feature on my Windows 7 PC.  Is there a way to change the perferences in Spotlight so it finds all file names if one searchers on a word in the file name?  When I enter Ono in the Spotlight search box I get OnOff Switch slider, a list of files in which the Ono paper is referenced, and a Ono Yoko!  But it does not find the 6 or so PDF files on the Computer with Ono and the primary author in the file name!  Spotlight is almost useless.

    First try to re-index Spotlight
    You can also download the free EaayFind in the App Store

  • Buongiorno, vorrei eliminare dallo secondo monitor (proiettore) la barra degli strumenti in alto (finder, file composizione,vista ecc..) che è comparsa con l'istallazione del nuovo aggiornamento mavericks. E' possibile?

    buongiorno, vorrei eliminare dallo secondo monitor (proiettore) la barra degli strumenti in alto (finder, file composizione,vista ecc..) che è comparsa con l'istallazione del nuovo aggiornamento mavericks. E' possibile?

Maybe you are looking for

  • Create function module

    hi all, in  ALV report  we have selection screen options has SELECT-OPTIONS: S_bukrs  FOR bseg-bukrs OBLIGATORY,                               S_belnr  FOR bseg-belnr OBLIGATORY,                               S_gjahr  FOR bseg-gjahr. and output field

  • Vms virtual machine not active

    Hi when iam trying to activate vmc sm52 vmc is not active vmc status could not be changed Server   crmserver_CRM_78   Date: 25.11.2011, Time: 22:32:04  VMC is not loaded    Shared GC   Inactive   Shared Pool   128 MB   Global Classes   0 Bytes / 0 % 

  • Can't open https pages

    I have safari 1.3.2 and os 10.3.9. I cannot open any https pages on safari, but can on internet explorer. I have tried clearing the cache, but it didn't help. What else can I do? iBook G4   Mac OS X (10.3.9)  

  • Full 1gb usb drive with space available

    Have a 1gb USB drive that indicates 731 MB available but getting "no free disk space" messge when I try to copy 2mb jpg pictures. This is information from Disk utility when I did a verify and repair on this drive Verifying volume "MyDrive" Checking f

  • How can I delete phishing emails in TimeMachine Backups

    I am currently running Maverick, upgraded after a series of crashes and then nice people at Apple Customer Centre helped me to reset my iMac and to install Maverick. I am now also running MacKeeper, which is telling me that it is finding phishing ema