Files
ffmpeg-gui/internal/config/config_other.go
T

14 lines
183 B
Go
Raw Normal View History

2026-07-29 19:33:46 +08:00
//go:build !windows
package config
import (
"os"
"path/filepath"
)
func appDataDir() string {
home, _ := os.UserHomeDir()
return filepath.Join(home, ".config", "ffmpeg-gui")
}