Fetching File details

(imported topic written by karthika_w)

Hi Friends,

Kindly help me to fetch the file names from particular folder.same i created the analysis but unable to fetch all the filenames.

Eg:

name

of

find files

“*.jar”

of

(descendant folders

of

folder

“D:”
)

(imported comment written by gearoid)

if you want the file objects:

descendants whose (name of it contains “.jar”) of folder “d:/”

if you just want the names (string) use:

names of descendants whose (name of it contains “.jar”) of folder “d:/”

And if you want to use find:

names of find files “*.jar” of descendant folders of folder “d:/”

(imported comment written by karthika_w)

Thank you . It works perfectly fine

(imported comment written by jgstew)

if you want to find all .jar files of a particular folder, it would be the following:

names of files whose(name of it as lowercase ends with “.jar”) of folder “D:\JarFolder”

Be very careful when using “descendants” or “find files” inspectors. These can be very inefficient and should be avoided in most cases.