Windows how to view only files within subfolders?

Discussion in 'Software' started by sotu1, 3 Jan 2014.

  1. sotu1

    sotu1 Ex-Modder

    Joined:
    24 Aug 2007
    Posts:
    2,883
    Likes Received:
    26
    Hi guys,

    So turns out Apple has made a bit of a mess of all my photos and I want to manually sort them out.

    I have thousands of photos in different folders and I wanted to sift through them all to tidy them up.

    My question is:

    Is there a way to view only the files within a collection of folders, all at once??

    Either in Windows or Apple iOS

    Cheers!
     
  2. wolfticket

    wolfticket Downwind from the bloodhounds

    Joined:
    19 Apr 2008
    Posts:
    3,331
    Likes Received:
    466
    The search function in Windows (or iOS I'd imagine) should do that unless I'm missing something.

    Simply search *.* ( or kind:=picture in Windows for just pictures) within the photos folder.
     
  3. sotu1

    sotu1 Ex-Modder

    Joined:
    24 Aug 2007
    Posts:
    2,883
    Likes Received:
    26
    hmm good thinking. Am worried I'll miss out random files though :S
     
  4. RinSewand

    RinSewand What's a Dremel?

    Joined:
    11 Sep 2006
    Posts:
    1,845
    Likes Received:
    80
    Do you want them to stay in the folders? If not I'd be tempted by a bit of batch file / powershell action to move them all in to one root folder.
     
  5. Daedelus

    Daedelus What's a Dremel?

    Joined:
    7 May 2009
    Posts:
    253
    Likes Received:
    12
    I'm not entirely sure what you are trying to do but if, say, you have a directory called "photos" which itself contains folders of photos, you can list them all with a simple dir command:

    dir *.jpg /s /b

    you can send the results to a txt file:

    dir *.jpg /s /b > c:\photos.txt
     
    Last edited: 14 Jan 2014
  6. alecamused

    alecamused Minimodder

    Joined:
    22 Apr 2008
    Posts:
    302
    Likes Received:
    24
    Open a terminal window (command + space, type terminal).
    Create a target directory (mkdir </path/to/target> )
    Navigate to the top level directory you want to search through (cd </path/of/directory/>)
    Type "find . -type f -exec mv {} </path/to/target> \;"

    (recursively finds every regular file and moves it to your target directory)
     

Share This Page