https://kotlinlang.org logo
#getting-started
Title
# getting-started
e

elect

10/26/2021, 11:23 AM
is there any kotlin specific method to retrieve file with wildcard strings? Or I should just refer to the java ones?
e

elect

10/26/2021, 12:19 PM
simple patterns such as
*.c
or
**
, thanks
only on
Path
😞 , poor
File
j

Joffrey

10/26/2021, 12:21 PM
Why would you need
File
though? For
File
you actually might have Java equivalents, or you can just
toPath()
😄
e

elect

10/26/2021, 12:21 PM
I start from that.. yeah I know
3 Views