Description

UE4 is hardcoded to use 755 for files and directories. See mkdir() in Engine/Source/Runtime/Core/Private/Unix/UnixPlatformFile.cpp

This is also repeated for Android, HTML5, and Lumin but i cannot confirm any symptoms on those. In a Linux development environment it is useful for different users to share assets and DDC. 755 forces read only for everyone but the owner, making this difficult. A user should be able to change their umask to override this.

Steps to Reproduce
  1. Change the umask from the default 022 to 002 and reload the profile
  2. # echo "umask 002" > ~/.profile && source ~/.profile
  3. Open the editor, create a blank project "MyProject", close the editor.
  4. # ./UE4Editor
  5. Check the permissions of the created directory and files
  6. # ls -lR ~/Documents/Unreal\ Projects

Results: Directories and files were created with permissions rw-r-r-.

Expected: Directories and files should be created with permissions rw-rw-r--

Have Comments or More Details?

There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-79519 in the post.

1
Login to Vote

Fixed
ComponentUE - Platform - Linux
Affects Versions4.22.3
Target Fix4.26
CreatedAug 28, 2019
ResolvedOct 6, 2020
UpdatedNov 5, 2020