BuildPatchTool - FileIgnoreList wildcards

Hello,

According to the patch notes, BuildPatchTool supports wildcards and regex for FileIgnoreList file since version 1.6.0.

I’m trying to ignore subfolders and files inside “DLCs” directory, however despite multiple tried variants, the files and subfolders inside this directory are still uploaded. I’m on version 1.7.0, but tried version 1.6.0 as well. What is the correct way to exclude whole directories from uploaded binaries?

I’m sure the provided file is used in general, because if I provide exact file paths to exclude, they’re actually being excluded.

Here’s what I tried having in my file provided to FileIgnoreList argument:

DLCs/*
DLCs/**/*
DLCs/**/*.bundle
DLCs/*.bundle
DLCs*
/DLCs/*
/DLCs/**/*
/DLCs/**/*.bundle
/DLCs/*.bundle
/DLCs*

Hello! These are indeed supported from v1.6.0 of the Build Patch Tool.
You’ll need to signify these using the following format.

explicit-folder-path/explicit-file-path.txt
R"sample-folder-regex/.*"
W"*.dat"