Search 'filename contains' in finder. Help please

Hello. I need to search my filesystem for any files containing the words "foo" (for example). Currently, when I type 'foo' into my finder search bar, it returns only those filenames starting with the word 'foo'. Can anyone tell me the way to adjust search behavior to search filenames containing 'foo' instead of starting with 'foo'?
Thanks!

That's odd: if I open the Applications folder, then do a Command-F search, with the criterion of
"Name contains and"
on the Apps folder, I get 143 results, including things like
GarageBand
GrandPerspective
HandBrake
Random Spheres.bmp
copyLibFile.command
bread and wine
CopyAndPaste.js
And so on. If I add the restriction, "Kind is Applications" I get four results:
GrandPerspective
PandoCalendar
HandBrake
GarageBand
HOWEVER, if I leave the restriction "Kind is Applications" and delete the "Name Contains" criterion, and instead put and in the Search for field I get this bewildering result:
CSSEdit
Xee
Neither seems to have anything to do with my Search for term. Looking at the metadata which is indexed I see both do have the actual word "and" at some point in their metadata. Poking around a bit and thinking, I concluded that the only way to get a partial name search is to use the "Name contains" criterion. If you use the Search box with the only criterion being "Kind is Any" you will get:
1. Any file that has the word "and" in its content
2. Any file whose metadata contains the word "and"
3. A file where "and" is separated in the title by any method that Spotlight recognizes as a delimiter; thus you will get "Roll and Crash" and "Pen And Ink" and "FiveBySevenAndThreeH.txt" but not something like GarageBand.
The delimiters that I know about off-hand are capital letters, spaces, the underscore (thus something like "washanddry" would show up), and periods (so if a file was named "foo.and.txt" it would show up). There are probably others as well.
Francine
Francine
Schwieder

Similar Messages

  • Empty iphoto library, albums still there, photos in Finder, help please

    The last time I opened iPhoto with my library present, I got a message saying that this version of iPhoto could rebuild my thumbnails with better detail and did I want to rebuild now. I said yes, as they hadn't been rebuilt in a while. There were three files created after that ThumbJPGSegment.data, Thumb32Segment.data and Thumb64Segment.data. When I open iPhoto, it says "no photos" at the bottom and the screen is blank and gray. On the left only some of my albums are listed as they were, and all contain (0) photos. I do have all the pictures still there in Finder. I read the exchange from 10/31 with Terence and it would seem I have a corrupt file that needs to be copied or restored. I have a back-up of the library, but it exists in three parts. The first two were created using the backup facility back in June. Then I backed up, again with the utility, just the pictures between the last back-up and the end of our trip in July. We just completed a 10-month trip around the world and I have about 19G and 5,400 pix to restore and would like to keep them in the original albums, esp. since many have been photocasted and the links are all placed in a Photo Archive page on our website. Terence said to copy the library6.photo file from the backup to the hard drive, but can I do this in three parts? If I use the backup utility's restore command will that do it for me, considering the fact that the complete library is a combination of two different back-ups? Help please! Thx!

    Folks
    Try these in order - from best option on down...
    1. Do you have an up-to-date back up? If so, try copy the library6.iphoto file from the back up to the iPhoto Library allowing it to overwrite the damaged file.
    2. Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums back.
    3. If neither of these work then you'll need to create and populate a new library.
    To create and populate a new library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.

  • HT4718 Installed new hard drive, click on restore from time machine, get to 'select a destination' but just keeps searching for disks.. any help please?

    Installed new hard drive and want to restore from time machine.
    Get as far as 'select a destination'  then it goes no further - just keeps 'searching for disks'
    Help anyone please?

    1. Be sure your drive is attached and mounted.
    2. If you have already written any data to the drive, back it up before proceeding to the next step.
    3. In the Finder, choose Go > Utilities. The /Applications/Utilities folder will open.
    4. Launch Disk Utility.
    5. Click the icon for your external hard drive in the sidebar on the left.
    6. Click the Erase tab along the top of the window.
    7. From the Volume Format menu, choose Mac OS Extended (Journaled).
    8. Enter a name for the external hard drive in the Name field.
    9. Click the Erase button.
    Make Sure that you choose the correct drive

  • Search filename contains - rather than exact match

    What I want to do:
    I want to be able to search from a paragraphed .txt file containing numbers only like this
    1234567
    1234568
    1234569
    1234570
    In a specific folder like this
    01 ADVERTS < Folder
    Sub folders:
    01 Billy 1234567
    01 Graham 1234568
    01 Sue 1234569
    01 Paul 1234570
    But at the moment it cannot find anything.
    The only way I can get this to work is if I rename all the Sub folder names to match exactly what the paragrahped numbers are or vice versa but this is more work and counter productive.
    Any help would be appreciated.
    Thanks in advance.

    The following script should do what you are asking for:
    set basePath to "old_hd:Users:Blan:Desktop:Last Week:ADS:01 Announcements:"
    try
        set destinationPath to alias "old_hd:Users:Blan:Desktop:This weeks:ADS:01 Announcements:"
    on error
        display alert "Folder Not Present"
        return
    end try
    set fileList to paragraphs of (read alias "old_hd:Users:Blan:Desktop:01 Numbered List.txt")
    set folderPaths to {}
    repeat with thisFileName in fileList
        if length of thisFileName > 0 then
            try
                tell application "Finder"
                    set theFolderName to name of (folder 1 of (basePath as alias) whose name ends with thisFileName)
                end tell
                copy (basePath & theFolderName) as alias to the end of folderPaths
            on error
                display alert "File “" & (basePath & thisFileName) & "” does not exist. Skip this file or cancel script?" buttons {"Skip File", "Cancel"} default button "Skip File"
                if button returned of the result is "Cancel" then return
            end try
        end if
    end repeat
    tell application "Finder"
        duplicate folderPaths to destinationPath
    end tell
    Hope it can help.
    Message was edited by: Pierre L. (removed “space & ”)

  • Download error on PDFs--can't find helper--please help!

    Hi,
    I'm trying to use USPS.com to print labels. It used to work great for me until I downloaded the newest Firefox version and also installed the new CS3. I have Mac OS 10.5. When I go make a label at USPS (or try to download any PDF), I get an error like this and the document won't open, I can't print anything:
    Download Error
    /Users/heidinylnd/desktop/statement.pdf could not be opened, because the associated helper application does not exist. Change the association in your preferences
    I have Acrobat 8 Professional. I downloaded Acrobat Reader 8 to see if that would put the required "helper" back in place. No luck. I even made that the default program to open PDFs. I used to get "Preview" to open the PDFs, but that's not working now, either. Erg!
    Please help!
    Heidi

    I did! I had to fix it through Firefox. Apparently something doesn't install automatically with the new CS3 or 10.5--whichever is the culprit.
    Try this:
    Go to Firefox in your top menu options
    Scroll down to preferences
    When the "Main" screen comes up, click on "Content"
    Hit the last button on the page, "Manage"
    You'll then be able to see what program is linked to PDFs. On mine, no action was set once I installed the new programs and deleted my old version of Acrobat.
    I didn't fix this in Explorer, but I'll bet there's a similar process. I worked on finding the answer for 4 hours--finally getting help through firefox's volunteer forums! I even downloaded the new Acrobat reader and that didn't do anything before this.
    Hope it works for you, too!
    Heidi

  • Blank DVD ejects instead of opening FINDER help please,sending it away 2mro

    Hi, My macbook is getting sent away tomorrow to be repaired so i am trying to back up my documents before it goes but as soon as i insert a blank DVD instead of opening finder like it should (i have checked settings on syst prefs) it just ejects, so i have no idea what to do.
    Please help...
    Cheers
    P.s
    is it okay that im using a dvd instead of cd ??

    I just tried a movie and it just started playing and was fine,, its just the blank dvds, have tried a few of them and they all seem to eject ?? :S

  • Overriding automatic organization of iTunes music in Finder -- help please

    Hello. I'm trying to organize the music in my iTunes library in the Finder (in the folder at .../[user]/Music/iTunes/iTunes Music). However, when I drag music into the library in the iTunes application, which makes it appear in that folder in the Finder, it automatically organizes itself in its own way. For example, I have a bunch of music backed up on an external hard drive. The song I'll use as an example here is "Layla" from the album "Layla and Other Assorted Love Songs" by "Derek & the Dominos" -- it is a .m4a file that was downloaded from iTunes. The problem is that, on my external drive, the album "Layla and Other Assorted Love Songs" is not under the artist "Derek & the Dominos"; it's under "Compilations". So, when I drag the song "Layla" from that album from my external hard drive to my iTunes Library, the artist name that appears in the Finder is "Compilations", but I want it to be under "Derek & the Dominos" -- how can I fix this? Obviously, I can simply rename the folder within the Finder from "Compilations" to "Derek & the Dominos", but every time I drag it back to the iTunes library it reverts back to its original artist name, "Compilations". It's like the file has information stored with it somewhere that tells it to do this. Is there anyway I can change this and override iTunes?
    Basically, is there any way that I can make it so that when I drag the file "Layla.m4a" from my external drive to my iTunes Library, it appears in the finder in the artist directory that I want it to ("Derek & the Dominos") instead of "Compilations"?
    I will greatly appreciate any help anyone can offer with this. Thanks!

    In additon to the previous comment on *Part of a compliation* setting, if this is unset then files will follow the *Album Artist* over the Artist if both are set but have different values. This often matters when there are guest/featured artists or if, for example, you wanted to organise the Derek & The Dominos tracks with other stuff by Eric Clapton.
    See http://samsoft.org.uk/iTunes/grouping.asp for more organizational tips.
    tt2

  • I lost the highlight word and search when i reinstaled firefox help please

    i had an option that i could highlight a word and on the right bottom of the word and blue box with an arrow would come up now i lost how can i get it again
    its the simplest search help or Firefox
    thx in advance

    Issues with tooltips not working properly have been reported to be caused by the Google Toolbar (Tools > Add-ons > Extensions)<br />
    See [[Troubleshooting extensions and themes]]
    You can try to uninstall and reinstall the latest Google Toolbar.
    * https://www.google.com/intl/en/toolbar/ff/

  • On my windows 7 laptop, after trying two suggestions, I cannot GET RID of yahoo as the Firefox search engine!!! Help Please!!

    For two weeks I have been fighting to remove yahoo as the search engine with Mozilla Firefox. I am running the newest version of Firefox. I followed information I found online and fixed my desktop. The same information will not work on my laptop. The path was (about:config) (type keyword.URL in the filter box) ( on the string that appears, right click on keyword.URL) (select modify) ( type in the url of your choosing, choices are given) and that is supposed to fix it. It did on my desk top not my laptop.

    After months, I think I figured it out...
    I was frustrated because I like to use the url bar as my search engine, which is not fixed using the link posted by jadeye.
    Try this...
    * In your address bar, type in: “about:config”
    * Inside of the filter search box, type in: browser.search.defaulturl
    * ctrl click and choose “Modify”
    * Type in: http://www.google.com/search?lr=&ie=UTF-8&oe=UTF-8&q=
    * Do the same process with: keyword.URL and use:
    http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q=
    I think those steps finally fixed it for me. F-ing Blingee / SearchCanvas. What a racket.

  • Where i can buy Creative MegaWorks THX 6.1 650D help please !

    Where i can buy Creative MegaWorks? THX 6.1 650D
    i search but i cant find ? please help

    http://ecoustics.pricegrabber.com/search_getprod.php/masterid=779899
    Note that it can help if you search for "Cambridge MegaWorks 650" as well as "Creative MegaWorks 650". The speakers are based off of mini-HT speakers manufactured by Cambridge SoundWorks.
    Cambridge SoundWorks does not have the MegaWorks 650 as they have been discontinued for the GigaWorks.

  • I backup to an external hdd with Time Machine, when it ran out of space it did not delete old backups, now my internal hdd says its full when before it had heaps of space. I have searched for extra files but cant find any. Can anyone help, please.

    I backup to an external hdd with Time Machine, when it ran out of space it did not delete old backups, now my internal hdd says its full when before it had heaps of space. I have searched for extra files but cant find any. Can anyone help, please.

    First, empty the Trash if you haven't already done so. Then reboot. That will temporarily free up some space.
    To locate large files, you can use Spotlight as described here. That method may not find large folders that contain a lot of small files.
    You can also use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Proceed further only if the problem hasn't been solved.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Install ODS in the Applications folder as usual.
    Triple-click the line of text below to select it, then copy the selected text to the Clipboard (command-C):sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    I don't recommend that you make a habit of doing this. Don't delete anything while running ODS as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means.
    When you're done with ODS, quit it and also quit Terminal.

  • I have a new computer and downloaded the latest version of itunes.I now need to authorise my computer but cannot find the bar that contains " store windows help" any suggestions please?

    i have a new computer and downloaded the latest version of itunes.I now need to authorise my computer but cannot find the bar that contains " store windows help" any suggestions please?

    Press Alt or Ctrl+B.
    tt2

  • My ipod nano FM radio does not work it only has European band and japan band and when you search to find a radio station I cant hear anything. Help please!!

    my ipod nano FM radio does not work it only has European band and japan band and when you search to find a radio station I cant hear anything. Help please!!

    Hi kahli:
    Have a look at  http://manuals.info.apple.com/en_US/iPod_nano_5th_gen_UserGuide.pdf
    AND
    http://manuals.info.apple.com/en_US/iPod_nano_5th_gen_UserGuide.pdf

  • Safari is saving every site I've been on into the search bar on my MacBook AIR OMG soooo MAD!! Help PLEASE!!!!!!

    Today I went to PowerPoint and then I clicked Insert > Slides from > Other Presentation
    Now a box pops up and says "Choose a File" on the title bar. Then it says Choose a file containing slides you want to insert
    So now it says: search:    This Mac   Home    Desktop    Contents   File Name with    "this mac" and "contents" highlighted
    And then in the search bar to the far right with the magnify glass I typed the phrase "nos.." by accident...then I noticed almost EVERY webpage/instragram/youtube I've ever been on comes up, some of them listed numerous times.
    I see all these random youtube videos Ive watched, all these websties, and the worst peoples instagrams that Ive been stalking LMAO!! Like when I type in for example "ashley" it comes up ashley9234 (for example) instagram 6 times in a row listed, but some pages only once, all these webpages everything omg I cant sleep knowing almost every site Ive ever been to is there..and you cant click it or delete it, I just dont like to see it.
    And I did click "Reset Safari" , clear history everynight before I turn off my computer, but you see that is not the problem...the problem is that why stuff Ive visited from even 7 months ago show up , and why some are listed numerous times like 6 times in a row...omg Apple...you have let me down big time. Now I can never sell my mac ever!!! So next laptop is soo gonna be Sony or something..guys please..I really really really need your help Im losing sleep over this
    Can you guys try it...I just incidentally happened to see this when I was tryna do something search with PowerPoint and typed in the word "nos" and it came all these listings with beginning "nos"
    Try it out guys!! See if it happens for you and tell me the way to get rid of all of that under content finder, or search this Mac....PLEASE I wanna break my laptop!!!!!! I am soo mad Not that I visit any bad sites but I do like fb and insta stalking sometimes ahaa and i just dont like these peoples names or kardashian blog websites showing up for myself..even though no one will ever see it ..it makes me not ok.

    Yes, I do that every 30 minutes, thats not the issue tho, because it shows like for example, 4 months ago i search a celebrity on wikipedia ONCE, and it shows up if you type that first name in the search bar......
    Is there ANYWAY to get rid of this bug..or does Apple Mac come with a defect....is this happening for other people, can someone please check, I asked my friend it comes for her too, but way less results, and sometimes when she resets safari hers goes away for the moment, and comes back later when u search...hmmm strange...
    need help!!!

  • Search files which filename contains a speicific string

    Hi
    I'm lookng for a way to find all files in a directory which part of filename contains a specific string.
    e.g.:
    string = hello
    files;
    - 1hello2.txt
    - 22he45.txt
    - gehello42353.txt, ....
    The result should be either an index or the complete filename that matches. In the example I'd found index 0 and 2, or 1hello2.txt and gehello42353.txt.
    Actually I have the list of the files with the "recursive list.vi".
    Any suggestions are welcome.
    Thanks for your precious help
    Yves
    Solved!
    Go to Solution.

    You can use List Folder - function with *hello* -pattern.
    From there you get filenames, which include that specific pattern.
    If you allready have list of files:
    - use Scan string for tokens in a for loop and if token index != -1, then you can add that array index to the list.
    I´m sure there are better ways to do this, but nothing I can come up with quickly.
    Attachments:
    search.png ‏16 KB

Maybe you are looking for

  • "New software is available for your Nokia N97"

    I received this sms a bit earlier today, checked on NSU and as I have become accustomed, no new updates. Why send out a text message before the software is actually available? Pretty annoying.

  • View Accessor Bind Variables not implemented yet

    When i try to use a view aceesor that has bind variables, and try to configure the value of the bind variable the message is that it is not implemented yet... Will this be in the next release? Is there a workaround? I am trying to use this for list o

  • By using Itunes Match I get an error message 4010

    Windows 7, with 4 devices running on a same iTunes account, since 24 hours I get the 4010 error code and no download of updated music. Does anyone has somse workabel advice? Thanks

  • Moving ssh server off port 22

    I want to move my ssh server off port 22. I understand I need to modify /etc/sshd_config to replace the line #Port 22 by Port 2222 (or whatever) but must I also modify something in /etc/services ? I'm running 10.4.5 Tiger on both server and client. T

  • On average how long should a download and install of Illustrator take?

    Just curious.  It's taken about 1 hours, and Illustrator is still at 2% on the install.  Do you think this is because my account information was hacked?  Is someone stealing all of my computer processor's cycles? Or is it because Adobe has their head