[c#-plist]c#產生plist檔案

來源:互聯網
上載者:User

我總覺的,貼了這段代碼,是一件很‘杯具’的事情。

作為一個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();

        }
    }

 

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.