diff --git a/DeleteArr.go b/DeleteArr.go index 6ad8cff..02046c2 100644 --- a/DeleteArr.go +++ b/DeleteArr.go @@ -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) } }