regex:file_path:windows
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
regex:file_path:windows [2021/05/20 21:33] – peter | regex:file_path:windows [2021/05/26 15:26] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Regex - File Path - Windows ====== | ====== Regex - File Path - Windows ====== | ||
- | ^\\{2}[\w-.]+(\\{1}(([\w-][\w-\s]*[\w-]+[$$]?)|([\w-][$$]?$)))+$ | + | < |
+ | ^(?: | ||
- | Works.... | + | or |
- | ^(?: | + | |
- | ^(?: | + | ^(\w:\\$)|^(?: |
+ | </ | ||
+ | <WRAP info> | ||
+ | **NOTE:** This is made up of: | ||
+ | * **< | ||
+ | * **< | ||
- | ([a-z_\-\s\0-9\.\\]+)+([a-z_\-\s\0-9\.]+)(\\)([a-z_\-\s\0-9]+)$ | + | * **< |
+ | * **< | ||
+ | </ | ||
- | <code> | + | <WRAP info> |
- | ^(?:[\w]\: | + | **NOTE:** This regex supports the following as valid. |
- | + | ||
- | ^(?: | + | |
- | </ | + | |
< | < | ||
- | (?:(?:[a-z]:|\\\\[a-z0-9_.$\●-]+\\[a-z0-9_.$\●-]+)\\| # Drive | + | 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 | ||
</ | </ | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
- | ===== Windows ===== | + | < |
- | + | file | |
- | < | + | file.xls |
- | (\\\\([a-z|A-Z|0-9|-|_|\s]{2, | + | 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: | ||
+ | \\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 | ||
</ | </ | ||
- | <WRAP info> | + | To allow the top two entries to also be accepted as valid entries change the regex to include: |
- | **NOTE:** Disallows a few characters: **< | + | |
- | </ | + | |
- | ---- | + | * **< |
- | < | + | < |
- | ^((?:[a-z]:\\$|(?:[a-z]:|\\\\[a-z]+\\(?!\.)[^\r\n$<> | + | ^(\w:\\$)|^([A-Za-z_\-\s0-9\.\$]+)$|^(?:[\w]\:|\\)(\\(?!\.)(?!\s[a-z_0-9-])[A-Za-z_\-\s0-9\.\$]+)+$ |
</ | </ | ||
- | ---- | + | To allow the very bottom entry here: **< |
- | < | + | < |
- | ^[a-zA-Z]: | + | ^(?:[a-zA-Z]:\\$)|^(?:[a-zA-Z]\:|\\)(\\(?!\.)(?!\s[a-zA-Z_0-9-\.])\{?[a-zA-Z_\-\s0-9\.\$]+)+(\}\\([a-zA-Z_\-\s0-9\.\$])+?)?$ |
</ | </ | ||
- | < | + | </WRAP> |
- | **NOTE: | + | |
- | * **< | + | ---- |
- | * **< | + | ===== References ===== |
- | + | ||
- | * **< | + | |
- | + | ||
- | * **< | + | |
- | + | ||
- | 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 < | + | |
- | </ | + | |
+ | https:// |
regex/file_path/windows.1621546402.txt.gz · Last modified: 2021/05/20 21:33 by peter