Check if image exist before download it

This commit is contained in:
EduardoRiesco 2017-12-02 18:45:46 +00:00 committed by SantiagoBragagnolo
parent 375c3f201b
commit 8796e71adc
1 changed files with 4 additions and 3 deletions

View File

@ -339,9 +339,10 @@ GrafoscopioNode >> downloadImagesInto: folder [
path:= path , '/' , eachDirectory .
(folder / path) ensureCreateDirectory ].
localFolder := (folder / each directory).
ZnClient new
url: each ;
downloadTo: localFolder . ]
(localFolder / each lastPathSegment) exists ifFalse: [
ZnClient new
url: each ;
downloadTo: localFolder . ]]
]
{ #category : #'custom markup' }