User Tools

Site Tools


regex:file_path

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
regex:file_path [2021/05/20 10:19] peterregex:file_path [2021/05/20 10:32] (current) peter
Line 1: Line 1:
 ====== Regex - File Path ====== ====== Regex - File Path ======
  
-===== Windows =====+[[Regex:File Path:Drive letter paths|Drive letter paths]]
  
-<code bash> +[[Regex:File Path:Drive letter and UNC paths|Drive letter and UNC paths]]
-(\\\\([a-z|A-Z|0-9|-|_|\s]{2,15}){1}(\.[a-z|A-Z|0-9|-|_|\s]{1,64}){0,3}){1}(\\[^\\|\/|\:|\*|\?|"|\<|\>|\|]{1,64}){1,}(\\){0,+
-</code>+
  
-<WRAP info> +[[Regex:File Path:Windows|Windows]]
-**NOTE:**  Disallows a few characters**<nowiki>\/:*?"<>|</nowiki>**. +
-</WRAP>+
  
----- 
  
-<code bash> 
-^((?:[a-z]:\\$|(?:[a-z]:|\\\\[a-z]+\\(?!\.)[^\r\n$<>]+\$?)))((\\|(\\(?!\.)[^\r\n<>\\]+)*)(?<!\\)$)  
-</code> 
- 
----- 
- 
-<code bash> 
-^[a-zA-Z]:\\(((?![<>:"/\\|?*]).)+((?<![ .])\\)?)*$ 
-</code> 
- 
-<WRAP info> 
-**NOTE:**  It makes the path conform to the NTFS standard (see the MSDN spec). 
- 
-  * **<nowiki>^[a-zA-Z]:\\</nowiki>** matches single drive letter, with colon and backslash 
- 
-  * **<nowiki>(?![<>:"/\\|?*])</nowiki>** is a negative lookahead to ensure the next character is not invalid 
- 
-  * **<nowiki>((?![<>:"/\\|?*]).)+</nowiki>** wraps that lookahead, followed by the next character, any number of times 
- 
-  * **<nowiki>(?<![ .])\\</nowiki>** 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 <nowiki>*with {0,256}</nowiki>. 
-</WRAP> 
  
regex/file_path.1621505998.txt.gz · Last modified: 2021/05/20 10:19 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki