Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
zip multiple files
#1
im interested in zipping multiple files, looking at the help section, not sure how to add a list of items.

Function save_lzip_new_chart_
Code:
Copy      Help
str ziploc=  "$Documents$\my_files\VCChart.zip"
str zipfile1= "C:\SC\Charts\Hrts.cht"
str zipfile2=  "C:\SC\Data\study.scss"

zip ziploc (zipfile1 zipfile2)
#2
Code:
Copy      Help
str list=
;C:\SC\Charts\Hrts.cht
;C:\SC\Data\study.scss

zip ziploc list

or

Code:
Copy      Help
zip ziploc F"{zipfile1}[]{zipfile2}"


Forum Jump:


Users browsing this thread: 1 Guest(s)