Scalar functions for UNC file handling
Two quick little scalar functions that strip out the filename and filepath from a fully qualified UNC filename.
i.e. @UNCPath = "ServerNameShareNameDirectoryFilename.txt"
SELECT dbo.fn_GetUNCFileName(@UNCPath)
returns "Filename.txt"
and
SELECT dbo.fn_GetUNCFilePath(@UNCPath)
returns "ServerNameShareNameDirectory"
Code:
CREATE FUNCTION fn_GetUNCFileName
(@FileString VARCHAR(8000))
RETURNS varchar(8000)
AS
BEGIN
DECLARE
@StartPointer INT,
@NextPointer INT,
@FileName VARCHAR(8000)
/** Strip Out filename from a UNC FilePath eg. 'TestDirectoryFilename.csv' **/
SELECT @StartPointer = CHARINDEX('',@FileString)
WHILE @StartPointer != 0
BEGIN
SELECT @NextPointer = CHARINDEX('',@FileString,@StartPointer)
-- Got start point of filename
IF
Premium Access
Register now for unlimited access to our premium content across our network of over 70 information Technology web sites.
By submitting you agree to receive email from TechTarget and its partners. If you reside outside of the United States, you consent to having your personal data transferred to and processed in the United States.
Privacy
Dig Deeper
-
People who read this also read...
This was first published in May 2002
@NextPointer = 0
BEGIN
SELECT @FileName = SUBSTRING(@FileString,@StartPointer,(DATALENGTH(@FileString)-@StartPointer)+1)
SELECT @StartPointer = @NextPointer
END
ELSE
SELECT @StartPointer = @NextPointer + 1
END
RETURN @FileName
END
GO
CREATE FUNCTION fn_GetUNCFilePath
(@FileString VARCHAR(8000))
RETURNS varchar(8000)
AS
BEGIN
DECLARE
@StartPointer INT,
@NextPointer INT,
@FilePath VARCHAR(8000)
/** Strip Out filepath from a UNC FilePath eg. 'TestDirectoryFilename.csv' **/
SELECT @StartPointer = CHARINDEX('',@FileString)
WHILE @StartPointer != 0
BEGIN
SELECT @NextPointer = CHARINDEX('',@FileString,@StartPointer)
-- Got start point of filename
IF @NextPointer = 0
BEGIN
SELECT @FilePath = LEFT(@FileString,@StartPointer-2)
SELECT @StartPointer = @NextPointer
END
ELSE
SELECT @StartPointer = @NextPointer + 1
END
RETURN @FilePath
END
GO
Disclaimer:
Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.
Join the conversationComment
Share
Comments
Results
Contribute to the conversation