You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The UserDir variable, which spans two lines in its definition, gets a boxed layout,
/// A set of permissions for user owned directories, this is equivalent to 0755/// on unix-like systems.pubstaticUserDir:FilePermission = UserRWX | GroupRead | GroupExecute |
OtherRead | OtherExecute;
whereas the one line UserFile definition looks correct
/// A set of permissions for user owned files, this is equivalent to 0644 on/// unix-like systems.pubstaticUserFile:FilePermission = UserRead | UserWrite | GroupRead | OtherRead;