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 22:47] – peter | regex:file_path:windows [2021/05/26 15:26] (current) – peter | ||
---|---|---|---|
Line 2: | Line 2: | ||
< | < | ||
- | ^(?:[\w]\: | + | ^(?:[a-zA-Z]:\\$)|^(?: |
- | </ | + | |
+ | or | ||
- | ^\\{2}[\w-.]+(\\{1}(([\w-][\w-\s]*[\w-]+[$$]?)|([\w-][$$]?$)))+$ | + | ^(\w:\\$)|^(?:[\w]\:|\\)(\\(?!\.)(?!\s[a-zA-Z_0-9-])[a-zA-Z_\-\s0-9\.\$]+)+$ |
+ | </ | ||
- | Works.... | + | <WRAP info> |
- | ^(?:[\w]\: | + | **NOTE:** This is made up of: |
- | ^(?:[\w]\: | + | * **< |
+ | * **< | ||
+ | * **< | ||
+ | * **< | ||
+ | </ | ||
- | + | <WRAP info> | |
- | ([a-z_\-\s\0-9\.\\]+)+([a-z_\-\s\0-9\.]+)(\\)([a-z_\-\s\0-9]+)$ | + | **NOTE: |
< | < | ||
- | ^(?:[\w]\:|\\)(\\[a-z_\-\s0-9\.]+)+\.(txt|gif|pdf|doc|docx|xls|xlsx)$ | + | c:\ |
- | + | c:\folder\myfile.txt | |
- | ^(?:[\w]\:|\\)(\\[a-z_\-\s\0-9\.]+)+(?:\\)([a-z_\-\s\0-9]+){1}$ | + | 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: | ||
< | < | ||
- | (?:(?:[a-z]:|\\\\[a-z0-9_.$\●-]+\\[a-z0-9_.$\●-]+)\\| # Drive | + | file |
- | | + | file.xls |
- | (?:[^\\/:*?"<>|\r\n]+\\)* # Folder | + | 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 | ||
+ | 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 | ||
+ | </ | ||
+ | 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.1621550833.txt.gz · Last modified: 2021/05/20 22:47 by peter