R语言中 获取FTP根目录下文件列表
在python中是很容易实现这个功能的。在win10系统中,R中 不是那么容易实现的。win10 系统 需要安装ncftp
https://www.ncftp.com/ncftp/doc/ncftp.html
通过shell 调用 ncftpls命令
remotefilelist<-shell('ncftpls -u lichaowen -p lichaowen "-x ls " ftp://192.168.168.68',intern = TRUE)
print(remotefilelist)
RemoteList<-substring(remotefilelist,57,nchar(remotefilelist))
print(RemoteList)
NcFTP:灵活的 FTP 客户端
https://www.ibm.com/developerworks/cn/aix/library/au-ncftp_flex/
END