This commit is contained in:
Gregory Salaun 2023-12-17 17:59:14 +07:00
parent 4bcce5108c
commit 0cd569a103

View File

@ -61,18 +61,18 @@ func main() {
if RadarrEventType != "" {
m.EventType = os.Getenv("rad")
m.SourcePath = os.Getenv("radarr_moviefile_sourcepath")
log.Println(m.SourcePath)
log.Printf("The Source Path is: %v", m.SourcePath)
m.SourceFolder = os.Getenv("radarr_moviefile_sourcefolder")
log.Println(m.SourceFolder)
log.Printf("The Source Folder is: %v", m.SourceFolder)
}
if SonarrEventType != "" {
m.EventType = os.Getenv("sonarr_eventtype")
m.SourcePath = os.Getenv("sonarr_episodefile_sourcepath")
log.Println(m.SourcePath)
log.Printf("The Source Path is: %v", m.SourcePath)
m.SourceFolder = os.Getenv("radarr_moviefile_sourcefolder")
log.Println(m.SourceFolder)
log.Printf("The Source Folder is: %v", m.SourceFolder)
}
m.IsInFolder()
@ -99,6 +99,11 @@ func main() {
}
}
log.Printf("Found %v MKV files in the folder", mkvCount)
// if not in folder just delete the file
} else {
os.RemoveAll(m.SourcePath)
log.Printf("Deleting the file %v", m.SourcePath)
}
}