Я хочу создать файл "text.txt" (или любой другой .txt), который впоследствии можно будет записывать, редактировать и переименовывать в файл. json. Я прокомментировал некоторые неудачные попытки сделать это, и любые методы были бы одинаково полезны.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace FileGenTest1
{
class Program
{
static void Main(string[] args)
{
string space;
int name;
string fileName;
name = 1;
space = " ";
fileName = "text.txt";
string newPath = @"C:\Project Manifest\"+ name;
bool directoryExists = Directory.Exists(newPath);
if (directoryExists)
{
Console.WriteLine("Directory" + space + '"' + newPath + '"' + space + "Exists");
//using (StreamWriter sw = File.CreateText(newPath));
//File.Create(name);
File.Create(@"myfilename.ext");
}
else
{
Console.WriteLine("Directory" + space + '"' + newPath + '"' + space + "Does NOT Exist");
Console.WriteLine("Creating Directory" + space + '"' + newPath + '"' + space + "...");
//Directory.CreateDirectory(newPath);
}
Console.ReadLine();
}
}
}