id summary reporter owner description type status priority milestone component resolution keywords cc 1002 The release exporter should ignore directories and files that it has not permission to read Nicklas Nordborg Nicklas Nordborg "The release exporter is creating scripts for lining data files to files that already exists in earlier releases and for copying new files. To be able to decide if a file should be linked or copied the exporter need to find out the files that already exists. It does this by executing several `find` commands. While this works fine in most cases there is a problem if the data folder has a directory that is not accessible by the current user. See the attached image. [[Image(permission-denied.png)]] It should be possible to write the `find` commands so that it ignore non-accessible files. The first `find` command that is looking for directories could simply use the `-executable` filter to get rid of the permission issue. The second `find` command that is looking for files we need to use something like: `-type d ! -executable -prune , -type f -readable` The first part (-type d ! -executable -prune) should exclude all directories that are not executable. The seconds part will then match all files that are readable." defect closed minor Reggie v4.13 net.sf.basedb.reggie fixed