</head> <body> <h1>Long Paths <span class="ver">[v1.1.31+]</span></h1> <p>In general, programs are affected by two kinds of path length limitations:</p> <ol> <li>Functions provided by the operating system generally limit paths to 259 characters, with some exceptions.</li> <li>Code for dealing with paths within the program may rely on the first limitation to simplify the code, effectively placing another 259 character limitation.</li> </ol> <p>These limitations are often referred to as "MAX_PATH limitations", after the constant <code>MAX_PATH</code>, which has the value 260. One character is generally reserved for a null terminator, leaving 259 characters for the actual path.</p> <p>AutoHotkey <span class="ver">[v1.1.31+]</span> (excluding ANSI versions) removes the second kind in most cases, which enables the script to work around the first kind. There are two ways to do this:</p> <ul> <li>Long paths can be enabled for AutoHotkey and all other long-path-aware programs on Windows 10. Refer to the <a href="https://docs.microsoft.com/ko-kr/windows/win32/fileio/naming-a-file#enable-long-paths-in-windows-10-version-1607-and-later">Microsoft documentation</a> for details. In short, this enables most commands and functions to transparently work with long paths, but requires Windows 10 version 1607 or later.</li> <li>In many cases, prefixing the path with <code>\\?\</code> enables it to exceed the usual limit. However, some system functions do not support it (or long paths in general). See <a href="#limitations">Known Limitations</a> for details.</li> </ul> <h2 id="prefix">Long Path Prefix</h2> <p>If supported by the underlying system function, the <code>\\?\</code> prefix -- for example, in <code>\\?\C:\My Folder</code> -- increases the limit to 32,767 characters. However, it does this by skipping <a href="https://blogs.msdn.microsoft.com/jeremykuhne/2016/04/21/path-normalization/">path normalization</a>. Some elements of the path which would normally be removed or altered by normalization instead become part of the file's actual path. Care must be taken as this can allow the creation of paths that "normal" programs cannot access.</p> <p>In particular, normalization:</p> <ul> <li>Resolves relative paths such as <code>dir\file.ext</code>, <code>\file.ext</code> and <code>C:file.ext</code> (note the absence of a slash).</li> <li>Resolves relative components such as <code>\..</code> and <code>\.</code>.</li> <li>Canonicalizes component/directory separators, replacing <code>/</code> with <code>\</code> and eliminating redundant separators.</li> <li>Trims certain characters, such as a single period at the end of a component (<code>dir.\file</code>) or trailing spaces and periods (<code>dir\filename . .</code>).</li> </ul> <p>A path can be normalized explicitly by passing it to <a href="https://docs.microsoft.com/ko-kr/windows/win32/api/fileapi/nf-fileapi-getfullpathnamew">GetFullPathName</a> via the function defined below, before applying the prefix. 예를 들어:</p> <pre>MsgBox % "\\?\" NormalizePath("..\file.ext")</pre> <pre filename="foo.ahk">NormalizePath(path) { cc := DllCall("GetFullPathName", "str", path, "uint", 0, "ptr", 0, "ptr", 0, "uint") VarSetCapacity(buf, cc*2) DllCall("GetFullPathName", "str", path, "uint", cc, "str", buf, "ptr", 0) return buf }</pre> <p>A path with the <code>\\?\</code> prefix can also be normalized by this function. However, in that case the working directory is never used, and the root is <code>\\?\</code> (for example, <code>\\?\C:\..</code> resolves to <code>\\?\</code> whereas <code>C:\..</code> resolves to <code>C:\</code>).</p> <h2 id="limitations">알려진 한계</h2> <p>ANSI versions of AutoHotkey do not support long paths.</p> <p>Even when the path itself is not limited to 259 characters, each component (file or directory name) cannot exceed the hard limit imposed by the file system (usually 255 characters).</p> <p>These do not support long paths due to limitations of the underlying system function(s):</p> <ul> <li><a href="../lib/DllCall.htm">DllCall()</a> (for <em>DllFile</em> and <em>Function</em>)</li> <li><a href="../lib/FileCopyDir.htm">FileCopyDir</a></li> <li><a href="../lib/FileCreateShortcut.htm">FileCreateShortcut</a></li> <li><a href="../lib/FileGetShortcut.htm">FileGetShortcut</a></li> <li><a href="../lib/FileMoveDir.htm">FileMoveDir</a>, unless the R option is used</li> <li><a href="../lib/FileRecycle.htm">FileRecycle</a></li> <li><a href="../lib/FileRemoveDir.htm">FileRemoveDir</a>, unless <em>Recurse</em> is false</li> <li><a href="../lib/SoundPlay.htm">SoundPlay</a> (for this, the limit is 127 characters)</li> <li><a href="../lib/Drive.htm#Label">Drive Label</a> and <a href="../lib/DriveGet.htm">DriveGet</a> (except Type)</li> <li>Built-in variables which return special folder paths (for which long paths might be impossible anyway): <a href="../Variables.htm#AppData">A_AppData</a>, <a href="../Variables.htm#Desktop">A_Desktop</a>, <a href="../Variables.htm#MyDocuments">A_MyDocuments</a>, <a href="../Variables.htm#ProgramFiles">ProgramFiles</a>, <a href="../Variables.htm#ProgramFiles">A_ProgramFiles</a>, <a href="../Variables.htm#Programs">A_Programs</a>, <a href="../Variables.htm#StartMenu">A_StartMenu</a>, <a href="../Variables.htm#Startup">A_Startup</a> and Common variants, <a href="../Variables.htm#Temp">A_Temp</a> and <a href="../Variables.htm#WinDir">A_WinDir</a></li> </ul> <p><a href="../lib/SetWorkingDir.htm">SetWorkingDir</a> and <a href="../Variables.htm#WorkingDir">A_WorkingDir</a> support long paths only when Windows 10 long path awareness is enabled, since the <code>\\?\</code> prefix cannot be used. If the working directory exceeds MAX_PATH, it becomes impossible to launch programs with <a href="../lib/Run.htm">Run</a>. These limitations are imposed by the OS.</p> <p>It does not appear to be possible to run an executable with a full path which exceeds MAX_PATH. That being the case, it would not be possible to fully test any changes aimed at supporting longer executable paths. Therefore, MAX_PATH limits have been left in place for the following:</p> <ul> <li><a href="WinTitle.htm#ahk_exe">ahk_exe</a></li> <li>The default script's path, which is based on the current executable's path.</li> <li>Retrieval of the AutoHotkey installation directory, which is used by <a href="../Variables.htm#AhkPath">A_AhkPath</a> in compiled scripts and may be used to launch Window Spy or the help file.</li> <li><a href="../lib/WinGet.htm#ProcessPath">WinGet ProcessPath</a>.</li> <li><a href="../lib/WinGet.htm#ProcessName">WinGet ProcessName</a> (this theoretically isn't a problem since it is applied only to the name portion, and NTFS only supports names up to 255 chars).</li> </ul> <p>Long <a href="../lib/_Include.htm">#Include</a> paths shown in error messages may be truncated arbitrarily.</p> </body> </html>