Start backing up Spotify Apps folder to backupPath
(appPath, backupPath string)
| 9 | |
| 10 | // Start backing up Spotify Apps folder to backupPath |
| 11 | func Start(appPath, backupPath string) error { |
| 12 | return utils.Copy(appPath, backupPath, false, []string{".spa"}) |
| 13 | } |
| 14 | |
| 15 | // Extract all SPA files from backupPath to extractPath |
| 16 | func Extract(backupPath, extractPath string) { |