mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
Move TempFileName
to utils
This commit is contained in:
parent
6eb13c9f79
commit
fa72aaa462
4 changed files with 16 additions and 13 deletions
12
utils/files.go
Normal file
12
utils/files.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
func TempFileName(prefix, suffix string) string {
|
||||
return filepath.Join(os.TempDir(), prefix+uuid.NewString()+suffix)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue