| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 
 | library(tidyverse)
 setwd("I:\\果蝇锻炼\\201803-不同浓度枸杞攀爬拍照")
 
 
 filelist <- dir()
 ziplist <-  filelist[grepl("zip",filelist)]
 
 
 for (i in 1:length(ziplist)) {
 unzip(ziplist[i], exdir = paste0("E:\\Desktop\\Fly-climb\\",substr(ziplist[i],1,str_length(ziplist[i])-4)))
 }
 
 |