打开FTP上的文件也用Open吗?

打开FTP上的文件也用Open吗?

请问一下,打开FTP上的文件也是用OPEN FILE吗?我先连接到FTP上后,用OPEN FILE, $file; 调试的时候说无法打开文件.这是为什么呢?谢谢!

两个FTP连接要new两次,生成两个对象
为什么我的OPEN语句,打开FTP2上面的文件,调试的时候显示的是无法打开文件呢?我的OPEN FILE语句哪里有问题吗?谢谢高手解答一下!
OPEN FILE,$file; 为什么无法打开FTP文件呢?
open不能直接打开FTP服务器上的文件
用神奇的 IO::All 模块吧。
http://search.cpan.org/~ingy/IO-All-0.38/lib/IO/All.pod
http://search.cpan.org/~itub/IO-All-LWP-0.14/lib/IO/All/FTP.pm

[Copy to clipboard] [ - ]
CODE:
    "hello world\n" > io('ftp://localhost/test/x');  # save to FTP
    io('ftp//example.org/pub/xyz') > io('xyz');      # GET to file
    $contents < io('ftp//example.org/pub/xyz')   # 读取 FTP 文件,将内容保存到字符串

    # two ways of getting a file with a password:
    $content < io('ftp://me:secret@example.org/xyz');
    $content < io('ftp://example.org/xyz')->user('me')->password('secret');

好东西啊。
谢谢各位了,我试试看看.
我用了
io('ftp//example.org/pub/xyz') > io('xyz');     
$contents < io('ftp//example.org/pub/xyz') ;
这种语句,但是运行的时候,提示说:Can't find a class for method 'ftp' at...
这是为什么呢?