Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
a=Net::FTP.open('path', 'username','password') a.chdir('any name of directory')
但是如何访问父目录a.pwd()
a.pwd()
a.chdir('..')如果主机平台支持它(几乎所有平台都应该),则用于更改到父目录,或者用于以a.sendcmd('CDUP')与平台无关的方式更改到父目录。
a.chdir('..')
a.sendcmd('CDUP')