On 10/19/2023 3:40 AM, Andrea Fontana wrote:
> // Example
> deleteFiles("/tmp/test.txt", "/tmp/old.txt");
> deleteFiles(i"/tmp/$dirname/$file"); <-- ooops this will be expanded?
It will be:
```
deleteFiles("/tmp/%s/%s", dirname, file);
```
And you'll probably get a message like:
"Could not find /tmp/%s/%s"