On Friday, 22 September 2023 at 17:44:50 UTC, Vino wrote:
Hi All,

Request you help in understanding why the below code is always returning true when it should return false as per the documentation.

Documentation
```
filename must not contain any characters whose integer representation is in the range 0-31.
```

"Integer representation" here refers to the ANSI index or Unicode codepoint, ie. the filename must not contain `\x00` to `\x31`.

Reply via email to