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
I've recently been working on RAPT's keeplist.txt and blacklist.txt, which convert pattern strings into regular expressions based on specific rules. However, the path obtained by using os.path.join under Windows contains backslashes
For example, if I want to block the game/dlc/chapter40 folder, directly filling in blocklist.txt will not match. I can only use the wildcard writing method of game**dlc**chapter40.
The text was updated successfully, but these errors were encountered:
I've recently been working on RAPT's
keeplist.txt
andblacklist.txt
, which convert pattern strings into regular expressions based on specific rules. However, the path obtained by usingos.path.join
under Windows contains backslasheswhich will cause problems for regex matching.
For example, if I want to block the
game/dlc/chapter40
folder, directly filling inblocklist.txt
will not match. I can only use the wildcard writing method ofgame**dlc**chapter40
.The text was updated successfully, but these errors were encountered: