-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Shorten path on image build if needed (Windows with no long path supp…
…ort)
- Loading branch information
1 parent
88101a4
commit 39e4985
Showing
4 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
def get_short_path_name(long_name): | ||
""" | ||
Gets the short path name of a given long path. | ||
http://stackoverflow.com/a/23598461/200291 | ||
""" | ||
import ctypes | ||
from ctypes import wintypes | ||
|
||
_GetShortPathNameW = ctypes.windll.kernel32.GetShortPathNameW | ||
_GetShortPathNameW.argtypes = [wintypes.LPCWSTR, wintypes.LPWSTR, wintypes.DWORD] | ||
_GetShortPathNameW.restype = wintypes.DWORD | ||
output_buf_size = 0 | ||
while True: | ||
output_buf = ctypes.create_unicode_buffer(output_buf_size) | ||
needed = _GetShortPathNameW(long_name, output_buf, output_buf_size) | ||
if output_buf_size >= needed: | ||
return output_buf.value | ||
else: | ||
output_buf_size = needed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters