-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make Windows realpath consistent with Mac and Unix (#30611)
- Loading branch information
1 parent
bb636aa
commit 09c31b4
Showing
2 changed files
with
38 additions
and
12 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
Is unexplained 264 constant for sure correct? Looking into Windows' MAXPATH that I thought shorter I found:
https://stackoverflow.com/questions/1880321/why-does-the-260-character-path-length-limit-exist-in-windows
"This is not strictly true as the NTFS filesystem supports paths up to 32k characters."
Off-topic while on-topic for Windows file system:
https://docs.microsoft.com/en-us/windows/desktop/fileio/naming-a-file
Allowed chars, except: "Characters whose integer representations are in the range from 1 through 31, except for alternate data streams where these characters are allowed."
I'm a little curious if Julia supports alternate data streams, or needs to (I believe most software isn't aware of or ignores them).