matrixindicator
IS-IT--Management
Hoy, in .php you can get the folder name out of an URL.
This is a VBA access forum. I need to get something similar in VBA to get the name of a folder, are there some methods or ways to do so ?
Code:
$dir = opendir("support/desktop/documents/general");
// loop through the directory contents
while($file = readdir($dir)) {
//output contents to the browser
echo $file . "<br>";
}
This is a VBA access forum. I need to get something similar in VBA to get the name of a folder, are there some methods or ways to do so ?