Skip to content

Instantly share code, notes, and snippets.

@KateLin-BASIC
Created November 26, 2022 09:01
Show Gist options
  • Save KateLin-BASIC/a7e254ba7416b6d7af92ac700df9e64b to your computer and use it in GitHub Desktop.
Save KateLin-BASIC/a7e254ba7416b6d7af92ac700df9e64b to your computer and use it in GitHub Desktop.
| file fileContent |
file := 'test.png' asFileReference.
fileContent := ZnClient new
url: 'https://pharo.org/web/files/pharo.png';
get.
file ensureCreateFile.
file binaryWriteStreamDo: [ :stream | stream nextPutAll: fileContent ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment