Skip to content

Fix escaped backslashes #1017

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sdk-api-src/content/winbase/nf-winbase-movefileexw.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ If <i>dwFlags</i> specifies <b>MOVEFILE_DELAY_UNTIL_REBOOT</b>, the

In the ANSI version of this function, the name is limited to <b>MAX_PATH</b> characters.
To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend
"\\?\" to the path. For more information, see
"`\\?\`" to the path. For more information, see
<a href="/windows/desktop/FileIO/naming-a-file">Naming a File</a>


Expand All @@ -110,7 +110,7 @@ If <i>dwFlags</i> specifies <b>MOVEFILE_DELAY_UNTIL_REBOOT</b> and

In the ANSI version of this function, the name is limited to <b>MAX_PATH</b> characters.
To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend
"\\?\" to the path. For more information, see
"`\\?\`" to the path. For more information, see
<a href="/windows/desktop/FileIO/naming-a-file">Naming a File</a>


Expand Down