DownloadProject - DrXyzzy/cocalc GitHub Wiki

Howto download files from a CoCalc project

You might wonder: how can I get my files out of my CoCalc projects?

  1. Individual files: You can download each file individually via the "Files" interface. Select the file and click the "Download" button.

  2. It is also possible to download more than one file. For that, create an archive of a directory or even all files. Create a "Terminal"-file and issue one of these commands:

  • ZIP archive (Windows): zip -r9 "[filename].zip" [directory-name ...]
  • Tarball (Unix-like): tar cjvf "[filename].tar.bz2" [directory-name ...] (Replace [filename] with the actual filename and [directory-name] by one or more filenames or directory names.)

Afterwards, download the archive as explained above.