We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f141b8 commit 0720fbbCopy full SHA for 0720fbb
base/loading.jl
@@ -11,7 +11,8 @@ if Sys.isunix() && !Sys.isapple()
11
elseif Sys.iswindows()
12
# GetLongPathName Win32 function returns the case-preserved filename on NTFS.
13
function isfile_casesensitive(path)
14
- isaccessiblefile(path) || return false # Fail fast
+ isaccessiblepath(path) || return false # Fail fast. Not a path when case insensitive
15
+ isaccessiblefile(path) || return false # Fail fast. Not a file when case insensitive
16
basename(Filesystem.longpath(path)) == basename(path)
17
end
18
elseif Sys.isapple()
0 commit comments