我總覺的,貼了這段代碼,是一件很‘杯具’的事情。
作為一個iphone的碼農,竟然就這樣,懶得手寫添加plist檔案,而用代碼產生。需求呢。就是把當前檔案夾裡面所有的某種或者某幾種類型的檔案,做一個目錄。本例中,用的是txt當作示範。最終產生一個標準的,可以在xcode裡面使用的一個plist檔案。其實後來想想,完全可以使用ObjectiveC 實現,但是對於c#熟悉程度確實要好一點。。。
代碼 class Program
{
static void Main(string[] args)
{
// Create the file and writer.
FileStream fs = new FileStream("info.plist", FileMode.Create);
XmlTextWriter w = new XmlTextWriter(fs, Encoding.UTF8);
// Start the document.
w.WriteStartDocument();
// Add commets
w.WriteComment("DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd");
//PLIST START
w.WriteStartElement("plist");
//PLIST VERSION
w.WriteAttributeString("version", "1.0");
w.WriteStartElement("array");
string pathName = System.Environment.CurrentDirectory;
DirectoryInfo di = new DirectoryInfo(pathName);
FileSystemInfo[] fsi = di.GetFileSystemInfos();
foreach (FileSystemInfo fi in fsi)
{
if(fi.Extension.Contains(".txt"))
{
// Write a key string pair
w.WriteStartElement("dict");
w.WriteElementString("key", fi.Name.ToString());
w.WriteElementString("string", fi.Name.ToString());
w.WriteEndElement();
}
}
// End the document.
w.WriteEndElement();
w.WriteEndElement();
w.WriteEndDocument();
w.Flush();
fs.Close();
}
}