Search partial filenames in windows explorer












10















I'm attempting to search part of a filename in windows explorer, but unless the part of the name I search for is at the very beginning or is separated by spaces or underscores, it fails to match. For example, a file named HelloWorld.java will match a search of hello, but not world. *world fails as well.



Is there a native solution to this?










share|improve this question

























  • possible duplicate of Windows 7 Search Part of Filename

    – Jason C
    Jun 29 '14 at 0:55
















10















I'm attempting to search part of a filename in windows explorer, but unless the part of the name I search for is at the very beginning or is separated by spaces or underscores, it fails to match. For example, a file named HelloWorld.java will match a search of hello, but not world. *world fails as well.



Is there a native solution to this?










share|improve this question

























  • possible duplicate of Windows 7 Search Part of Filename

    – Jason C
    Jun 29 '14 at 0:55














10












10








10


4






I'm attempting to search part of a filename in windows explorer, but unless the part of the name I search for is at the very beginning or is separated by spaces or underscores, it fails to match. For example, a file named HelloWorld.java will match a search of hello, but not world. *world fails as well.



Is there a native solution to this?










share|improve this question
















I'm attempting to search part of a filename in windows explorer, but unless the part of the name I search for is at the very beginning or is separated by spaces or underscores, it fails to match. For example, a file named HelloWorld.java will match a search of hello, but not world. *world fails as well.



Is there a native solution to this?







windows-7 windows-explorer






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 16 '16 at 21:03







Drazen Bjelovuk

















asked Jun 29 '14 at 0:46









Drazen BjelovukDrazen Bjelovuk

2422414




2422414













  • possible duplicate of Windows 7 Search Part of Filename

    – Jason C
    Jun 29 '14 at 0:55



















  • possible duplicate of Windows 7 Search Part of Filename

    – Jason C
    Jun 29 '14 at 0:55

















possible duplicate of Windows 7 Search Part of Filename

– Jason C
Jun 29 '14 at 0:55





possible duplicate of Windows 7 Search Part of Filename

– Jason C
Jun 29 '14 at 0:55










3 Answers
3






active

oldest

votes


















17














Using this keyword and searching for "world": name:~=world will do the trick.



For more advanced search tips:




  • A guide to using Windows Search

  • Advanced Query Syntax






share|improve this answer





















  • 6





    Awesome, that did the trick! name:~=world also works.

    – Drazen Bjelovuk
    Jun 29 '14 at 1:04













  • My fingers thank you for checking that name:~= also works.

    – cody.codes
    Jun 29 '14 at 1:07








  • 1





    You rock - I was stuck on this myself and being late on a Saturday was getting ticked off. I rarely use windows search but have to in this case.

    – David Sterling
    Aug 6 '16 at 20:08











  • Is there a way to not have the search happening incrementally?

    – Anders Lindén
    Sep 12 '16 at 10:57



















3














*world*, the extension is part of what it runs the match against.



With name: you can use ~~world.






share|improve this answer


























  • That doesn't seem to work with the name: prefix.

    – Drazen Bjelovuk
    Jun 29 '14 at 0:53






  • 2





    @Josh What about ~~world?

    – Jason C
    Jun 29 '14 at 1:01






  • 2





    name:~~world as well as name:~=world both seem to work. Thanks Jason.

    – Drazen Bjelovuk
    Jun 29 '14 at 1:15





















1














Try a simple wildcard search * So your search would be *world



Wildcard search should pull up any partial matches however won't highlight the result in the file name. A lot simpler than typing out the other searches...






share|improve this answer























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "3"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f774612%2fsearch-partial-filenames-in-windows-explorer%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    17














    Using this keyword and searching for "world": name:~=world will do the trick.



    For more advanced search tips:




    • A guide to using Windows Search

    • Advanced Query Syntax






    share|improve this answer





















    • 6





      Awesome, that did the trick! name:~=world also works.

      – Drazen Bjelovuk
      Jun 29 '14 at 1:04













    • My fingers thank you for checking that name:~= also works.

      – cody.codes
      Jun 29 '14 at 1:07








    • 1





      You rock - I was stuck on this myself and being late on a Saturday was getting ticked off. I rarely use windows search but have to in this case.

      – David Sterling
      Aug 6 '16 at 20:08











    • Is there a way to not have the search happening incrementally?

      – Anders Lindén
      Sep 12 '16 at 10:57
















    17














    Using this keyword and searching for "world": name:~=world will do the trick.



    For more advanced search tips:




    • A guide to using Windows Search

    • Advanced Query Syntax






    share|improve this answer





















    • 6





      Awesome, that did the trick! name:~=world also works.

      – Drazen Bjelovuk
      Jun 29 '14 at 1:04













    • My fingers thank you for checking that name:~= also works.

      – cody.codes
      Jun 29 '14 at 1:07








    • 1





      You rock - I was stuck on this myself and being late on a Saturday was getting ticked off. I rarely use windows search but have to in this case.

      – David Sterling
      Aug 6 '16 at 20:08











    • Is there a way to not have the search happening incrementally?

      – Anders Lindén
      Sep 12 '16 at 10:57














    17












    17








    17







    Using this keyword and searching for "world": name:~=world will do the trick.



    For more advanced search tips:




    • A guide to using Windows Search

    • Advanced Query Syntax






    share|improve this answer















    Using this keyword and searching for "world": name:~=world will do the trick.



    For more advanced search tips:




    • A guide to using Windows Search

    • Advanced Query Syntax







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Jan 11 at 19:55









    zylstra

    2,43811011




    2,43811011










    answered Jun 29 '14 at 0:58









    cody.codescody.codes

    1,022421




    1,022421








    • 6





      Awesome, that did the trick! name:~=world also works.

      – Drazen Bjelovuk
      Jun 29 '14 at 1:04













    • My fingers thank you for checking that name:~= also works.

      – cody.codes
      Jun 29 '14 at 1:07








    • 1





      You rock - I was stuck on this myself and being late on a Saturday was getting ticked off. I rarely use windows search but have to in this case.

      – David Sterling
      Aug 6 '16 at 20:08











    • Is there a way to not have the search happening incrementally?

      – Anders Lindén
      Sep 12 '16 at 10:57














    • 6





      Awesome, that did the trick! name:~=world also works.

      – Drazen Bjelovuk
      Jun 29 '14 at 1:04













    • My fingers thank you for checking that name:~= also works.

      – cody.codes
      Jun 29 '14 at 1:07








    • 1





      You rock - I was stuck on this myself and being late on a Saturday was getting ticked off. I rarely use windows search but have to in this case.

      – David Sterling
      Aug 6 '16 at 20:08











    • Is there a way to not have the search happening incrementally?

      – Anders Lindén
      Sep 12 '16 at 10:57








    6




    6





    Awesome, that did the trick! name:~=world also works.

    – Drazen Bjelovuk
    Jun 29 '14 at 1:04







    Awesome, that did the trick! name:~=world also works.

    – Drazen Bjelovuk
    Jun 29 '14 at 1:04















    My fingers thank you for checking that name:~= also works.

    – cody.codes
    Jun 29 '14 at 1:07







    My fingers thank you for checking that name:~= also works.

    – cody.codes
    Jun 29 '14 at 1:07






    1




    1





    You rock - I was stuck on this myself and being late on a Saturday was getting ticked off. I rarely use windows search but have to in this case.

    – David Sterling
    Aug 6 '16 at 20:08





    You rock - I was stuck on this myself and being late on a Saturday was getting ticked off. I rarely use windows search but have to in this case.

    – David Sterling
    Aug 6 '16 at 20:08













    Is there a way to not have the search happening incrementally?

    – Anders Lindén
    Sep 12 '16 at 10:57





    Is there a way to not have the search happening incrementally?

    – Anders Lindén
    Sep 12 '16 at 10:57













    3














    *world*, the extension is part of what it runs the match against.



    With name: you can use ~~world.






    share|improve this answer


























    • That doesn't seem to work with the name: prefix.

      – Drazen Bjelovuk
      Jun 29 '14 at 0:53






    • 2





      @Josh What about ~~world?

      – Jason C
      Jun 29 '14 at 1:01






    • 2





      name:~~world as well as name:~=world both seem to work. Thanks Jason.

      – Drazen Bjelovuk
      Jun 29 '14 at 1:15


















    3














    *world*, the extension is part of what it runs the match against.



    With name: you can use ~~world.






    share|improve this answer


























    • That doesn't seem to work with the name: prefix.

      – Drazen Bjelovuk
      Jun 29 '14 at 0:53






    • 2





      @Josh What about ~~world?

      – Jason C
      Jun 29 '14 at 1:01






    • 2





      name:~~world as well as name:~=world both seem to work. Thanks Jason.

      – Drazen Bjelovuk
      Jun 29 '14 at 1:15
















    3












    3








    3







    *world*, the extension is part of what it runs the match against.



    With name: you can use ~~world.






    share|improve this answer















    *world*, the extension is part of what it runs the match against.



    With name: you can use ~~world.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Jun 29 '14 at 9:32

























    answered Jun 29 '14 at 0:49









    Jason CJason C

    6,95573041




    6,95573041













    • That doesn't seem to work with the name: prefix.

      – Drazen Bjelovuk
      Jun 29 '14 at 0:53






    • 2





      @Josh What about ~~world?

      – Jason C
      Jun 29 '14 at 1:01






    • 2





      name:~~world as well as name:~=world both seem to work. Thanks Jason.

      – Drazen Bjelovuk
      Jun 29 '14 at 1:15





















    • That doesn't seem to work with the name: prefix.

      – Drazen Bjelovuk
      Jun 29 '14 at 0:53






    • 2





      @Josh What about ~~world?

      – Jason C
      Jun 29 '14 at 1:01






    • 2





      name:~~world as well as name:~=world both seem to work. Thanks Jason.

      – Drazen Bjelovuk
      Jun 29 '14 at 1:15



















    That doesn't seem to work with the name: prefix.

    – Drazen Bjelovuk
    Jun 29 '14 at 0:53





    That doesn't seem to work with the name: prefix.

    – Drazen Bjelovuk
    Jun 29 '14 at 0:53




    2




    2





    @Josh What about ~~world?

    – Jason C
    Jun 29 '14 at 1:01





    @Josh What about ~~world?

    – Jason C
    Jun 29 '14 at 1:01




    2




    2





    name:~~world as well as name:~=world both seem to work. Thanks Jason.

    – Drazen Bjelovuk
    Jun 29 '14 at 1:15







    name:~~world as well as name:~=world both seem to work. Thanks Jason.

    – Drazen Bjelovuk
    Jun 29 '14 at 1:15













    1














    Try a simple wildcard search * So your search would be *world



    Wildcard search should pull up any partial matches however won't highlight the result in the file name. A lot simpler than typing out the other searches...






    share|improve this answer




























      1














      Try a simple wildcard search * So your search would be *world



      Wildcard search should pull up any partial matches however won't highlight the result in the file name. A lot simpler than typing out the other searches...






      share|improve this answer


























        1












        1








        1







        Try a simple wildcard search * So your search would be *world



        Wildcard search should pull up any partial matches however won't highlight the result in the file name. A lot simpler than typing out the other searches...






        share|improve this answer













        Try a simple wildcard search * So your search would be *world



        Wildcard search should pull up any partial matches however won't highlight the result in the file name. A lot simpler than typing out the other searches...







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jul 7 '17 at 22:09









        bertbert

        111




        111






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Super User!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f774612%2fsearch-partial-filenames-in-windows-explorer%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

            Mangá

             ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕