Group,
I'm counting the number of files in a folder using the following code:
Dim counter = My.Computer.FileSystem.GetFiles(folderName)
This produces a value that doesn't appear to be either a string or an integer. Would you know how to convert this value into an integer that can be used?
Don