is there any kotlin specific method to retrieve fi...
# getting-started
e
is there any kotlin specific method to retrieve file with wildcard strings? Or I should just refer to the java ones?
e
simple patterns such as
*.c
or
**
, thanks
only on
Path
😞 , poor
File
j
Why would you need
File
though? For
File
you actually might have Java equivalents, or you can just
toPath()
😄
e
I start from that.. yeah I know