075894bc | 16-Jul-2024 |
Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com> |
[CMD] Fix GetPathCase function (#7113)
This GetPathCase function does
resolve the path with wildcard
pattern, and fix the alphabet
cases, by using
kernel32!FindFirstFile function.
Enable wildca
[CMD] Fix GetPathCase function (#7113)
This GetPathCase function does
resolve the path with wildcard
pattern, and fix the alphabet
cases, by using
kernel32!FindFirstFile function.
Enable wildcard at the middle
of the file path in cmd.exe by
fixing this function.
JIRA issue: CORE-6609
JIRA issue: CORE-13906
- Fix GetPathCase function for
supporting wildcard at the
- middle of the file path.
- Make GetPathCase string-safe.
- Optimize GetPathCase.
show more ...
|
957bb895 | 09-Jul-2024 |
Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org> |
[CMD] Implement /F[:ON|:OFF] switch for file/path completion (#7118) CORE-8002
The switch enables or disables file/path completion in a unique CMD instance. The defaulted values for the completion c
[CMD] Implement /F[:ON|:OFF] switch for file/path completion (#7118) CORE-8002
The switch enables or disables file/path completion in a unique CMD instance. The defaulted values for the completion characters are those mentioned in CMD's help (see also MSDN[^1]): File: Ctrl-F (0x06); Directory: Ctrl-D (0x04)
Manual tests show that only /F:OFF explicitly disables completion. Otherwise, using /F(anything else following) always enables completion with the specific values described above.
[^1]: For additional details, see also https://technet.microsoft.com/en-us/library/cc978715.aspx https://technet.microsoft.com/en-us/library/cc940805.aspx
show more ...
|