t
This commit is contained in:
parent
4bcce5108c
commit
0cd569a103
13
DeleteArr.go
13
DeleteArr.go
@ -61,18 +61,18 @@ func main() {
|
|||||||
if RadarrEventType != "" {
|
if RadarrEventType != "" {
|
||||||
m.EventType = os.Getenv("rad")
|
m.EventType = os.Getenv("rad")
|
||||||
m.SourcePath = os.Getenv("radarr_moviefile_sourcepath")
|
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")
|
m.SourceFolder = os.Getenv("radarr_moviefile_sourcefolder")
|
||||||
log.Println(m.SourceFolder)
|
log.Printf("The Source Folder is: %v", m.SourceFolder)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if SonarrEventType != "" {
|
if SonarrEventType != "" {
|
||||||
m.EventType = os.Getenv("sonarr_eventtype")
|
m.EventType = os.Getenv("sonarr_eventtype")
|
||||||
m.SourcePath = os.Getenv("sonarr_episodefile_sourcepath")
|
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")
|
m.SourceFolder = os.Getenv("radarr_moviefile_sourcefolder")
|
||||||
log.Println(m.SourceFolder)
|
log.Printf("The Source Folder is: %v", m.SourceFolder)
|
||||||
}
|
}
|
||||||
|
|
||||||
m.IsInFolder()
|
m.IsInFolder()
|
||||||
@ -99,6 +99,11 @@ func main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
log.Printf("Found %v MKV files in the folder", mkvCount)
|
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)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user