How to get the file from different folder in different client

(imported topic written by Tiffy91)

Hi,

I have a file with same file name store in different location depend on the client.

example:

client A: file “text.txt” store in folder c:\Program Files\text1\version1

client B: file “text.txt” store in folder c:\Program Files\text2\version2

client C: file “text.txt” store in folder c:\Program Files\text3\version3

how do i able to get the same file name file in different folder from each Client??

Please advice.

Related script:

Q:exists names of files whose (it as string contains “text.txt”)of folders of folders of folders of folders “C:\Program Files”

this is no a good way due to some folder onyl have 1 layer different.

(imported comment written by NoahSalzman)

Do you know how to do what you want in a batch file or vbscript? If yes, could you show us your script?

(imported comment written by BenKus)

Hey tiffy,

Your method is pretty good…

Try:

q: exists files “text.txt” of folders whose (name of it as lowercase contains “version”) of folders whose (name of it as lowercase contains “text”) of folders “C:\Program Files”

Ben