It’s probably a pipe or socket or device or reparse point, or other thing for interprocess communication, but not a usual file with a data stream.
How to discover what exactly duplicacy means by it? search for “non-regular” in duplicacy source. You will find this self explanatory snippet:
if f.Mode()&(os.ModeNamedPipe|os.ModeSocket|os.ModeDevice) != 0 {
LOG_WARN("LIST_SKIP", "Skipped non-regular file %s", entry.Path)
skippedFiles = append(skippedFiles, entry.Path)
continue
}
Btw: you should not backup Postgres database (or any other running database for that matter) as is, the result will be non-restorable, even with -vss.
Instead, in pre-backup script export (dump) the database into a file and backup that file, and add exclusion for the database itself.
Alternatively, you need to ensure the database is closed when you run backup, which is impractical for most cases.