How can i get this File myTempDir = Files.createTempDir(Path path, String prefix, FileAttribute)
to work in windows.
I'm using java 7. On linux I can pass a PosixFilePermissions.asFileAttributes for the 3rd parameter.
What is the equivalent fileAttributes for windows.
I think this method always expects a fileAttribute object. Is there an empty fileAttribute that i can pass in?