As the subject says I'd like to find files with the exact filename in a specified location.
Example 1: If a folder has videos with subtitles that have same name as the video, the results will show both the .mkv and .srt files.
Example 2: If a folder has videos with subtitles and posters with same name as the video, the results will show .jpg .mkv and .srt files.
The inverse of this information will let us know which videos are missing subtitles and/or posters.
I know if we search for something, any file with any extension that has that name gets displayed BUT I do not want to supply individual filenames to everything because that makes this process extremely manual.
What i am asking for is that we let everything know that the intention is to list all files that have same filenames to be listed in results.
If a folder contains these files:
Code: Select all
nameA.jpg
nameA.mkv
nameB.mkv
nameB.srt
nameC.mkv
nameD.jpg
Code: Select all
nameA.jpg
nameA.mkv
nameB.mkv
nameB.srt
I hope i am able to explain my situation.
I understand this might be a strenuous request to process, since the names of all files will have to collected then matched against every other filename.
Is something like this achievable?
Thank you