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
```swift
let template = filePath + ".tmp.XXXXXX"
```
Instead of using `filePath` directly, we should check to see if extends past a certain length, then truncate the length of the string by enough characters to fit inside the 255 byte limit. This will allow the input path be up to 255 bytes, while the temporary file is also under the 255 byte limit.