Scalar functions for UNC file handling

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

    Requires Free Membership to View

    By submitting your registration information to SearchSQLServer.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSQLServer.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

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

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


Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    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.