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 23:02] – peter | regex:file_path:windows [2021/05/26 15:26] (current) – peter | ||
---|---|---|---|
Line 2: | Line 2: | ||
< | < | ||
- | ^(\w:\\$)|^([A-Za-z_\-\s0-9\.\$]+)$|^(?: | + | ^(?:[a-zA-Z]:\\$)|^(?:[a-zA-Z]\: |
+ | |||
+ | or | ||
+ | |||
+ | ^(\w:\\$)|^(?: | ||
</ | </ | ||
<WRAP info> | <WRAP info> | ||
**NOTE:** This is made up of: | **NOTE:** This is made up of: | ||
+ | |||
+ | * **< | ||
+ | * **< | ||
* **< | * **< | ||
- | | + | * **< |
- | | + | |
</ | </ | ||
- | |||
- | ---- | + | <WRAP info> |
+ | **NOTE: | ||
< | < | ||
- | ^(?:[\w]\:|\\)(\\(?!\.+)[A-Za-z_\-\s0-9\.\$]+)+$ | + | 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: | ||
+ | \\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 | ||
</ | </ | ||
- | + | </ | |
- | ^\\{2}[\w-.]+(\\{1}(([\w-][\w-\s]*[\w-]+[$$]? | + | |
- | + | <WRAP info> | |
- | Works.... | + | **NOTE:** The following are **not** valid: |
- | ^(?:[\w]\: | + | |
- | + | ||
- | ^(?:[\w]\: | + | |
- | + | ||
- | + | ||
- | + | ||
- | ([a-z_\-\s\0-9\.\\]+)+([a-z_\-\s\0-9\.]+)(\\)([a-z_\-\s\0-9]+)$ | + | |
< | < | ||
- | ^(?:[\w]\:|\\)(\\[a-z_\-\s0-9\.]+)+\.(txt|gif|pdf|doc|docx|xls|xlsx)$ | + | file |
- | + | file.xls | |
- | ^(?:[\w]\:|\\)(\\[a-z_\-\s\0-9\.]+)+(?:\\)([a-z_\-\s\0-9]+){1}$ | + | c:\my folder\another_folder\.docx |
+ | c:\my folder\\another_folder\abc.docx | ||
+ | c:\my folder\another_folder\ab*c.v2.docx | ||
+ | c:\my? | ||
+ | C:\ pictures\holiday | ||
+ | C:\ pictures\holiday\ | ||
+ | C:\pictures | ||
+ | C:\pictures | ||
+ | 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 | ||
</ | </ | ||
- | < | + | To allow the top two entries to also be accepted as valid entries change the regex to include: |
- | (?:(?: | + | |
- | | + | |
- | (?: | + | |
- | [^\\/: | + | |
+ | * **< | ||
- | ^(?:[\w]\:\\|\\\\)([a-z0-9_.$\s-]+\\[a-z0-9_.$\.-]+\\|\\?[^\\/:*?"<> | + | < |
+ | ^(\w:\\$)|^([A-Za-z_\-\s0-9\.\$]+)$|^(?:[\w]\:|\\)(\\(?!\.)(?!\s[a-z_0-9-])[A-Za-z_\-\s0-9\.\$]+)+$ | ||
</ | </ | ||
+ | To allow the very bottom entry here: **< | ||
- | ===== Windows ===== | + | < |
- | + | ^(?:[a-zA-Z]:\\$)|^(?:[a-zA-Z]\:|\\)(\\(?!\.)(?!\s[a-zA-Z_0-9-\.])\{?[a-zA-Z_\-\s0-9\.\$]+)+(\}\\([a-zA-Z_\-\s0-9\.\$])+?)?$ | |
- | < | + | |
- | (\\\\([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,} | + | |
</ | </ | ||
- | <WRAP info> | ||
- | **NOTE: | ||
</ | </ | ||
---- | ---- | ||
- | <code bash> | + | ===== References ===== |
- | ^((?: | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | <code bash> | + | |
- | ^[a-zA-Z]: | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | * **< | + | |
- | + | ||
- | * **< | + | |
- | + | ||
- | * **< | + | |
- | + | ||
- | * **< | + | |
- | + | ||
- | 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.1621551777.txt.gz · Last modified: 2021/05/20 23:02 by peter