Created
May 9, 2015 09:22
-
-
Save freshcutdevelopment/51e7fbba929937e49e6a to your computer and use it in GitHub Desktop.
Get file path root (excluding file name) with Vbscript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Function GetFilePath(FullPath) | |
| Dim filePath, pathArray | |
| pathArray = Split(FullPath, "\") | |
| pathArray(UBound(pathArray)) = "" | |
| filePath = Join(pathArray, "\") | |
| GetFilePath = filePath | |
| End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment