这是我没有文件的代码
static void Main(string[] args)
{
// BluetoothRadio.PrimaryRadio.Mode = RadioMode.Connectable;
BluetoothClient bc = new BluetoothClient();
BluetoothDeviceInfo[] devs = bc.DiscoverDevicesInRange();
foreach (BluetoothDeviceInfo d in devs)
{
System.Console.WriteLine(d.DeviceName);
}
System.Console.WriteLine("finish");
System.Console.ReadLine();
}
而不是行System.Console.WriteLine(d.DeviceName);
我希望将该部分写入文件。
之后我需要循环该文件,对于该文件中的每个设备名称,我将在另一个文件中搜索它的相应输出。关于如何循环和搜索文件的提示对于该部分就足够了。
谢谢。
答案 0 :(得分:1)
您可以使用File.AppendAllText()作为确切的插入内容(但您需要将Environment.NewLine附加到文本中)。
确保在foreach循环之前删除该文件(如果该文件存在),可能会根据您的要求提示用户进行确认。