Sunday, 15 April 2012

c# - Opening multiple files from FTP server using OpenFileDialoge -



c# - Opening multiple files from FTP server using OpenFileDialoge -

-last edit-

i want pick multiple files ftp location .net openfiledialog class. picking multiple files possible if set multiselect true. 1 time compiler runs showdialog(); file browser window. here can select files , since multiselect true able pick multiple files using shift & ctrl or combination of these keys. if type (in same file browser window, in same in same location box) ftp address shows files on ftp location. able select multiple files here, 1 time o press open popup window tells me i'm allowed select single file location.

q: can utilize openfiledialogue pick multiple files ftp location? or there other simple alternatives this? need select multiple files ftp source , read program.

-edit- to create things clear, making programme needs read in multiple files , process data. .net c# class openfiledialog. have no problems picking multiple files locally when start programme , utilize code wrote. when want pick ftp source allows me pick single file.

currently trying pick multiple files ftp://server.com openfiledialog class. methods using posted below. in case still has no clue: yes since windows 95 able utilize folder explorer browse ftp servers , functionality comes mutual file browser talking about.

i have simple file dialogue pick multiple files. when come in ftp server in dialogue window unable select multiple files (it asks me select single one). there way select multiple files way ftp server? need file dialogue select files local disk , ftp server.

if not possible looking solution browse , pick files ftp. previous effort @ custom ftp browser worked extremely slow since there many files , maps on server.

-edit-

openfiledialog ofd = new openfiledialog(); ofd.multiselect = true; ofd.filter = "log files (*.txt;*.log)|*.txt;*.log|csv files (*.csv)|*.csv|all files (*.*)|*.*"; ofd.restoredirectory = true; ofd.showdialog();

c# .net ftp openfiledialog

No comments:

Post a Comment