how can i send multiple files over TCP with C#, all the samples on the internet sends only a sinle file, im looking for something like this, loop through files in a folder and sending over tcp, this is the client, server side i want to receive and save them to disk,
Share
Have the client call and get all the files in the directory;
Use a DirectoryInfo object to get a list of the files in the directory, and return it;
Then have the client ask for the files one by one.