So there is a server and a LAN with ALL files shared. The Database is on the server, and contains information about the files that are physically stored in a specific Shared Folder (let's say E:\Shared).
The Filter property of FileSystemWatcher allows watching All files in a specific folder: *.* or just one type of file, ex.: *.txt, or only one, by name: code.txt.
I wonder if I can give multiple files (names from the Database) as arguments (like aaa.txt; bbb.txt; ccc.txt) in a textbox from a Form, with the use of the String.Split() command
to separate the strings then process them, or another way.