I'm using vb6. I need fetch several files start with C_ ,like C_001, C_002, C_003 in remote server to local using FTP.
I know how to fetch 1 file but have no clue how to fetch several files.
Does any one know how to use MGET?
Thanks a lot.
Printable View
I'm using vb6. I need fetch several files start with C_ ,like C_001, C_002, C_003 in remote server to local using FTP.
I know how to fetch 1 file but have no clue how to fetch several files.
Does any one know how to use MGET?
Thanks a lot.
I think you can use wild card character:
mget c_*
or something like that.