Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
706 views
in Technique[技术] by (71.8m points)

save richtextbox to file C#

I am having trouble saving from richtextbox to .txt file

here is the code:

if (richTextBox1.Text != String.Empty)
            {
                string dir = @"c:\logs" + DateTime.Today.ToString("dd_MMM_yy");
                string path = @"c:\logs" + DateTime.Today.ToString("dd_MMM_yy") + "" + DateTime.Now.ToString("HH.mm.ss") + ".txt";
                if (!Directory.Exists(dir))
                {
                    Directory.CreateDirectory(dir);
                }

                if (!File.Exists(path))
                {
                    File.Create(path);
                    richTextBox1.SaveFile(path, RichTextBoxStreamType.RichText);
                }

            }
            else
                MessageBox.Show("ERROR");

where I am going wrong ?! It says it cannot access the file because it is being used by another process... Any help would be welcome

Thanks, dnisko

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

you can avoid create file line because SaveFile will create file for you.

File.Create will return open stream for the file, you need to close it before access again. Do as below If you need to use create file anyway

using(File.Create(path));
richTextBox1.SaveFile(path, RichTextBoxStreamType.RichText);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...