My Learnings
Monday, August 27, 2012
Create, Read, Write, Copy, Move and Delete a Text File using C#
private void btnCreate_Click(object sender, EventArgs e)
{
FileStream fs = null;
if (!File.Exists(fileLoc))
{
using (fs = File.Create(fileLoc))
{
}
}
}
http://www.dotnetcurry.com/ShowArticle.aspx?ID=144
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment