Didn't know which forum this question belongs to, so I'll try it here. how can you use directoryinfo for a folder, that is not part of my project?
Dim dirInfo As New DirectoryInfo((folderpath))
If dirInfo.Exists ThenDim dirInfo As New DirectoryInfo((folderpath))
what i want to do, is loop through all files in the directory and save their paths to a database.
when i run this from visual studio, and folderpath is the path of a folder on my desktop, it works perfectly.
but when i publish my website on the server, the directory doesn't seem to exist.
from what I read online, the f ...
Go to the complete details ...