Forum Discussion
altemann
10 years agoContributor
var files = aqFileSystem.FindFiles("C:\\Excel Files", "*.xlsx");
while (files.HasNext()) {
file = files.Next();
//Upload file
}- tristaanogre10 years agoEsteemed Contributor
Exactly, altemann. The only thing I'd add is that, for the upload, you most likely will need the path for the file. The "file" variable indicated in the altemann's sample has a property "Path" that will give you the full file path.