| Comment | SQLServer User-Defined Function
PURPOSE
Return the foldername of a given directory.
Return value (VARCHAR(265)):
NULL - Directory does not exist
name - Foldername
EXAMPLES
SELECT dbo.fun_FolderProperty_Name('C:\Users')
Users
SELECT dbo.fun_FolderProperty_Name('C:\xxxx')
NULL
HISTORY
2000-01-01 - Created function
2024-02-09 - Changed history table
TAGS
<program>
<description>Return the foldername of a given directory</description>
<generic>1</generic>
<author>Gerrit Mantel</author>
<created>2000-01-01</created>
<lastmodified>2024-02-09</lastmodified>
</program> |