Click here to Skip to main content
15,891,409 members
Articles / General Programming / Regular Expressions
Tip/Trick

Regular Expression to Validate File Path and Extension

Rate me:
Please Sign up or sign in to vote.
4.95/5 (10 votes)
28 May 2012CPOL 271.6K   14   31
Regular Expression to validate the file path and extension and it is compatible with JavaScript and ASP.NET

Introduction

Recently, I was looking for a regular expression to validate a file path and extension. I found several of them on Google, but none of them fit my requirement. So I decided to put together a version that suits my need. Here is the Regular Expression to validate the file path and extension and it is compatible with JavaScript and ASP.NET. I hope someone will find this information useful and that it will make your programming job easier.

^(?:[\w]\:|\\)(\\[a-z_\-\s0-9\.]+)+\.(txt|gif|pdf|doc|docx|xls|xlsx)$

Explanation

^(?:[\w]\:|\\) -- Begin with x:\ or \\
 
[a-z_\-\s0-9\.] -- valid characters are a-z| 0-9|-|.|_ (you can add more)
 
(txt|gif|pdf|doc|docx|xls|xlsx) -- Valid extension (you can add more)

Matches

\\192.168.0.1\folder\file.pdf
\\192.168.0.1\my folder\folder.2\file.gif
c:\my folder\abc abc.docx
c:\my-folder\another_folder\abc.v2.docx

Non-Matches

\\192.168.0.1\folder\fi<le.pdf
\\192.168.0.1\folder\\file.pdf
\\192.168.0.1\my folder\folder.2\.gif
c:\my folder\another_folder\.docx
c:\my folder\\another_folder\abc.docx
c:\my folder\another_folder\ab*c.v2.docx
c:\my?folder\another_folder\abc.v2.docx
file.xls

Test It

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
I have over 10 years of experience working with Microsoft technologies. I have earned my Microsoft Certified Technology Specialist (MCTS) certification. I'm a highly motivated self-starter with an aptitude for learning new skills quickly.

Comments and Discussions

 
GeneralRe: Mac and Linux? Pin
Bryian Tan29-May-12 5:21
professionalBryian Tan29-May-12 5:21 
Questionhi Pin
beleshi28-May-12 21:28
beleshi28-May-12 21:28 
SuggestionDid not work!! Pin
klnreddy26-Mar-12 8:27
klnreddy26-Mar-12 8:27 
GeneralRe: Did not work!! Pin
Bryian Tan26-Mar-12 16:21
professionalBryian Tan26-Mar-12 16:21 
GeneralRe: Did not work!! Pin
gchq26-May-12 8:30
gchq26-May-12 8:30 
GeneralRe: Did not work!! Pin
Bryian Tan28-May-12 16:40
professionalBryian Tan28-May-12 16:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.