TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
First Name Last Name
NA
9
2.5k
Multi SaveFile in c#
Mar 31 2014 4:33 PM
SaveFileDialog savedialog = new SaveFileDialog();
savedialog.Filter = "TextFile (*.txt)|*.txt|DocumentFil (*.doc)|*.doc|HTMLFile (*.html)|*.Html|ExcelFile (*.xla)|*.xla|AllFile (*.*)|*.*";
savedialog.ShowDialog();
if (savedialog.ShowDialog() == DialogResult.OK)
{
for (int i = 0; i < 5; i++)
{
string name = savedialog.FileName;
File.WriteAllText(name+i.ToString(), "test");
}
}
how save for example 5 file in c#
Reply
Answers (
1
)
Problem with downlaod a files less than 1 mb
How to open a source code file which is deployed on IIS