Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I would like a regular expression to match a valid absolute Windows directory path, where directory names can contain spaces.

Example matches:

C:picturesholiday  (without trailing backslash)
C:picturesholiday (or with trailing backslash)
C: picturesholiday
C: picturesholiday
C:pictures  holiday
C:pictures  holiday
C:pictures holiday 

Example fails:

picturesholiday (no relative path allowed)
C:pictures*holiday (not a valid directory path)

I have tried ^[a-zA-Z]:(\w+)*([\])?$ but that does not match the spaces.

I have also tried ^[a-zA-Z]:(s)*(\w+)*(s)*([\])?$ but that works erratically.

Regular expressions are my last resort. I have also tried to validate the text box using a non-regex solution, like in this answer. But I have not found a method that works for spaces.

Thanks in advance!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
650 views
Welcome To Ask or Share your Answers For Others

1 Answer

Here's a regex that will work:

^[a-zA-Z]:\(((?![<>:"/\|?*]).)+((?<![ .])\)?)*$

It makes the path conform to the NTFS standard (see the MSDN spec). I'll break it down:

^[a-zA-Z]:\ matches single drive letter, with colon and backslash

(?![<>:"/\|?*]) is a negative lookahead to ensure the next character is not invalid

((?![<>:"/\|?*]).)+ wraps that lookahead, followed by the next character, any number of times

(?<![ .])\ is a negative lookbehind to ensure the file/directory doesn't end with a space or period. Please note: Lookbehinds are not fully implemented everywhere just yet.

All of that is is repeated 0 to many times, with the last backslash optional.

For many use cases it may be best to restrict the path length to 256 characters. To do so, replace *with {0,256}.

EDIT: allow root directory


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...