下面是我调用的方法,尝试逐行读取vcf文件到字符串数组中。
internal static void splitUpFile(String fileLocation)
{
string[] file = System.IO.File.ReadAllLines(fileLocation);
System.Console.WriteLine("Contents of contacts.vcf =:");
foreach (string line in file)
{
Console.WriteLine("\t" + line);
}
Console.WriteLine("Press any key to exit.");
System.Console.Read();
}
现在我想将数组拆分为另外三个vcf文件,这些文件是动态创建的,并且与已读入的文件位于同一目录中?这可能吗?
答案 0 :(得分:0)
要显示并保持打开控制台使用
Console.ReadLine();
在最后一行。
使用以下步骤创建其他vcf文件:
1. create a directory
2. create a file with .vcf extension in that directory
3. write data to and read data from that created file kept in the specified directory