add comment to zip file in r -


i'm trying add comments zip files using function zip in r. instance, need add comment "s:splist". so, assumed proper way may be:

data(iris) write.csv(iris, "iris.csv") zip(zipfile="iris.zip", files="iris.csv", extras="-z s:splist") file.remove("iris.csv") 

i in console following output:

adding: iris.csv (deflated 77%) enter new zip file comment (end .): zip warning: name not matched: s:splist 

apparently function zip makes , attempt add comment, comment giving troubles.

can me? many in advance advice

migue


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -