-
It is just filled with lines of the countries surrounded by double underscores, but how does that tell it to look in the subdirectory for those txt files? Wouldn't they all have to have the by_country/ prefix in order to tell the script to look in the subdirectory? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
You're right - it's a bug. I've fixed it in the latest version. The reason it actually works is that wildcards are matched by name. So |
Beta Was this translation helpful? Give feedback.
-
@adieyal I updated, but this only works now if I copy all the folders inside jumbo into my wildcards directory. What if I copy the entire jumbo folder, then it is missing the jumbo/ before artists. |
Beta Was this translation helpful? Give feedback.
-
Could I also just use Edit: just tried it and that works |
Beta Was this translation helpful? Give feedback.
-
What does your wildcards folder look like? wildcards/jumbo/artists/.... Or
wildcards/artists/...?
In any case your **/* should work. I don't understand the issue with
photographers.txt though. Is there still an issue with it?
…On Fri, 16 Dec 2022, 21:19 Jonseed, ***@***.***> wrote:
Could I also just use *jumbo/artists/Photography/by_country/**/** to grab
all the photographers from every country?
—
Reply to this email directly, view it on GitHub
<#111 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADGXMTZPY26B6G4BEFQX3TWNS6FZANCNFSM6AAAAAAS3IMHEQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
@adieyal it is the first, wildcards/jumbo/artists since I just copy the entire jumbo collection into wildcards. So photographers.txt would not work in that case, since I have the jumbo folder first, is that right? But the */ works. |
Beta Was this translation helpful? Give feedback.
You're right - it's a bug. I've fixed it in the latest version. The reason it actually works is that wildcards are matched by name. So
__austria__
would match any file called austria.txt - which works in this case, but might also pull in unnecessary wildcards from other files called austria.txt