Support for case sensitive Windows directories in NIO.2

260 views Asked by At

Recent Windows 10 builds feature an ability to mark a single NTFS directory (not the whole file system) as case sensitive, via fsutil.exe:

If I want to query the case-sensitive flag of a given directory from a Java application, I'm currently left with the only option of calling

fsutil.exe file queryCaseSensitiveInfo ...

on a per-directory basis, which means spawning potentially multiple processes, which is expensive.

Are there any planned NIO.2 API extensions in newer Java versions (11+) targeted at case-sensitive NTFS and/or WSL file systems?

0

There are 0 answers