Re: Issue with recognizing functions

2020-07-06 Thread slipbits
Thanks On 7/6/2020 9:39 AM, HRH wrote: This statement in your codeSystem.out.println(attr.toString()); will not print the permissions. The toString() operation on PosixFilePermissions class requires a parameter. Here is the method signature: PosixFilePermissions.toString​(Set perms) On

Re: Issue with recognizing functions

2020-07-06 Thread HRH
This statement in your code System.out.println(attr.toString()); will not print the permissions. The toString() operation on PosixFilePermissions class requires a parameter. Here is the method signature:PosixFilePermissions.toString​(Set perms) On Monday, July 6, 2020, 8:08:10 PM GMT

Issue with recognizing functions

2020-07-06 Thread slipbits
I am trying to create files/directories and to assign attributes to them. I would like my software to play on multiple OS's and I am trying to find the Java way of identifying OS specific attributes. Two issues came up. In one, there is no discussion of Windows attributes. I have assumed that t