Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wanna create a new folder named log and inside that folder i want to create a textfile named log.txt and this is the path i want to create D:\New Folder

i have tried this to create a new folder named log

string FilePathSave = Folder.ToString() + System.IO.Directory.CreateDirectory(@"D:\New Folder\Log");

And i have created a text file using this

string FilePathSave = Folder.ToString() +"log.txt";
File.WriteAllText(FilePathSave, TextBox1.Text);                

But i cant create like D:\New Folder\Log\log.txt...any suggestion??

share|improve this question

5 Answers

up vote 10 down vote accepted

Urm, something like this?

var dir = @"D:\New folder\log";  // folder location

if(!Directory.Exists(dir))  // if it doesn't exist, create
    Directory.CreateDirectory(dir);

// use Path.Combine to combine 2 strings to a path
File.WriteAllText(Path.Combine(dir, "log.txt"), "blah blah, text");
share|improve this answer
    string dir = @"D:\New Folder\Log";
    if (!Directory.Exists(dir))
    {
        Directory.CreateDirectory(dir);
    }

    File.WriteAllText(Path.Combine(dir, "log.txt"), TextBox1.Text);
share|improve this answer

Try using Path.Combine here:

string folder = Path.Combine(root, "log");
if(!Directory.Exists(folder)) Directory.CreateDirectory(folder);
string file = Path.Combine(folder, "log.txt");
File.WriteAllText(file, text);   
share|improve this answer
string d = "D:\\New Folder";  

if (!Directory.Exists)  
  Directory.CreateDirectory(d);

File.WriteAllText(d + "\\log.txt", textBox1.Text);

And add the using System.IO directive to your form.

share|improve this answer

you can do it in following way-

var str= "D:\\New folder\\log";
if (!Directory.Exists(str))
    Directory.CreateDirectory(str);

    Path.Combine(str, "log.txt");
share|improve this answer
Adding an answer that does not have any new information to a really old question that already has an accepted answer is a waste of time because it rarely gives you the reputation bonus AND it does not add value to Stack Overflow. It is always better to answer new questions instead. The only reason to add an answer to old question is a new solution that was not available at that time. – Artemix May 16 at 11:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.