Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Member
385 Points
275 Posts
Jan 06, 2012 04:49 AM|LINK
Hi All
I am using REST Protocol to send file through HTTP.
I am sending single file using REST it is possible.
But i am trying to select multiple wav file and send this is not happening.
I am storing all wav file path into string array.
private void cmdSelectFile_Click(object sender, RoutedEventArgs e) { OpenFileDialog dlg = new OpenFileDialog(); string[] filename = dlg.FileNames; int nCount = filename.Count(); for (int i = 0; i < nCount; i++) { FilePath=fileName[i]; }
Hoe to send it pls give me some code sample to send one by one all wav file
Thanks in advance
Ambrish
info2ambrish
Member
385 Points
275 Posts
Hoe to send multiple wave file in xaml??
Jan 06, 2012 04:49 AM|LINK
Hi All
I am using REST Protocol to send file through HTTP.
I am sending single file using REST it is possible.
But i am trying to select multiple wav file and send this is not happening.
I am storing all wav file path into string array.
private void cmdSelectFile_Click(object sender, RoutedEventArgs e) { OpenFileDialog dlg = new OpenFileDialog(); string[] filename = dlg.FileNames; int nCount = filename.Count(); for (int i = 0; i < nCount; i++) { FilePath=fileName[i]; }