User Tools

Site Tools


regex:file_path:windows

Differences

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

Link to this comparison view

Next revision
Previous revision
regex:file_path:windows [2021/05/20 10:32] – created peterregex:file_path:windows [2021/05/26 15:26] (current) peter
Line 1: Line 1:
 ====== Regex - File Path - Windows ====== ====== Regex - File Path - Windows ======
  
 +<code>
 +^(?:[a-zA-Z]:\\$)|^(?:[a-zA-Z]\:|\\)(\\(?!\.)(?!\s[a-zA-Z_0-9-\.])[a-zA-Z_\-\s0-9\.\$]+)+$
 +
 +or 
 +
 +^(\w:\\$)|^(?:[\w]\:|\\)(\\(?!\.)(?!\s[a-zA-Z_0-9-])[a-zA-Z_\-\s0-9\.\$]+)+$
 +</code>
 +
 +<WRAP info>
 +**NOTE:** This is made up of:
 +
 +  * **<nowiki>^(?:[a-zA-Z]:\\$)</nowiki>**:  Caters for <nowiki>C:\</nowiki>.
 +  * **<nowiki>^(?:[a-zA-Z]\:|\\)(\\(?!\.)(?!\s[a-zA-Z_0-9-\.])[a-zA-Z_\-\s0-9\.\$]+)+$</nowiki>**:  Cater for UNC and standard files with a directory name.
 +
 +  * **<nowiki>^(\w:\\$)</nowiki>**:  Caters for <nowiki>C:\</nowiki>.
 +  * **<nowiki>^(?:[\w]\:|\\)(\\(?!\.)(?!\s[a-zA-Z_0-9-])[A-Za-z_\-\s0-9\.\$]+)+$</nowiki>**:  Cater for UNC and standard files with a directory name.
 +</WRAP>
 +
 +<WRAP info>
 +**NOTE:**  This regex supports the following as valid.
 +
 +<code>
 +c:\
 +c:\folder\myfile.txt
 +c:\folder\myfileWithoutExtension
 +c:\my folder\abc abc.docx
 +c:\my-folder\another_folder\abc.v2.docx
 +C:\pictures\holiday  
 +C:\pictures\holiday\ 
 +\\192.168.0.1\folder\file.pdf
 +\\192.168.0.1\my folder\folder.2\file.gif
 +\\10.30.28.52\CDSDataCenter\Servers\Continuous\CDS20$
 +\\server\filename
 +\\server\filename with space
 +\\test\test$\TEST.xls
 +\\server\share\folder\myfile.txt
 +\\server\share\myfile.txt
 +\\123.123.123.123\share\folder\myfile.txt
 +</code>
 +
 +</WRAP>
 + 
 +<WRAP info>
 +**NOTE:**  The following are **not** valid:
 +
 +<code>
 +file
 +file.xls
 +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
 +C:\ pictures\holiday
 +C:\ pictures\holiday\
 +C:\pictures \ holiday
 +C:\pictures \ holiday\
 +C:\pictures\ holiday \
 +\\192.168.0.1\folder\fi<le.pdf
 +\\192.168.0.1\folder\\file.pdf
 +\\192.168.0.1\my folder\folder.2\.gif
 +\\server\filename\{token}\file
 +</code>
 +
 +To allow the top two entries to also be accepted as valid entries change the regex to include:
 +
 +  * **<nowiki>^([A-Za-z_\-\s0-9\.\$]+)$</nowiki>**:  Caters for plain filenames, such as file.txt or file.
 +
 +<code>
 +^(\w:\\$)|^([A-Za-z_\-\s0-9\.\$]+)$|^(?:[\w]\:|\\)(\\(?!\.)(?!\s[a-z_0-9-])[A-Za-z_\-\s0-9\.\$]+)+$
 +</code>
 +
 +To allow the very bottom entry here:  **<nowiki>\\server\filename\{token}\file</nowiki>**:
 +
 +<code>
 +^(?:[a-zA-Z]:\\$)|^(?:[a-zA-Z]\:|\\)(\\(?!\.)(?!\s[a-zA-Z_0-9-\.])\{?[a-zA-Z_\-\s0-9\.\$]+)+(\}\\([a-zA-Z_\-\s0-9\.\$])+?)?$
 +</code>
 +
 +</WRAP>
 +
 +----
 +
 +===== References =====
 +
 +https://www.regexpal.com/97685
regex/file_path/windows.1621506750.txt.gz · Last modified: 2021/05/20 10:32 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki