Try to not overwrite existing files
This commit is contained in:
parent
b3ca71d477
commit
70caca9ca0
@ -51,21 +51,26 @@ func (p *Pixiv) downloadIllust(i Illust) (err error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
outfile, err := os.Create(file.directory + file.filename)
|
if _, err = os.Stat(file.directory + file.filename); os.IsNotExist(err) {
|
||||||
if err != nil {
|
outfile, err := os.Create(file.directory + file.filename)
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer outfile.Close()
|
|
||||||
//log.Printf("Downloading %s to %s", file.url, outfile.Name())
|
|
||||||
err = p.downloadTo(file.url, outfile)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if p.setxattr {
|
|
||||||
err = syscall.Setxattr(outfile.Name(), "user.xdg.tags", []byte(i.TagsString()), 0)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
defer outfile.Close()
|
||||||
|
//log.Printf("Downloading %s to %s", file.url, outfile.Name())
|
||||||
|
err = p.downloadTo(file.url, outfile)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if p.setxattr {
|
||||||
|
err = syscall.Setxattr(outfile.Name(), "user.xdg.tags", []byte(i.TagsString()), 0)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
err = nil
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user