Hello everyone,
I have this very stupid question: How can I remove folder names from the output given by readdir()
Lets say I have the following folder structure:
folder1/
|_ file1
|_ file2
|_ file3
|_ folder2/
I get then
julia> readdir()
4-element Vector{String}:
"file1"
"file2"
"file3"
"folder2"
Is there a way to exclude all folders from the output?
Many thanks in advance,
Olivier