首頁  >  文章  >  php教程  >  创建年月日文件

创建年月日文件

WBOY
WBOY原創
2016-06-06 20:01:292221瀏覽

/// summary /// 创建年月日文件 /// /summary /// param name="parPath"根目录/param private void CreateDir(string parPath) { string months = System.DateTime.Now.Month 10 ? "0" + System.DateTime.Now.Month.ToString() : System.DateTime.Now.Month

 

    ///

    /// 创建年月日文件

    ///

    /// 根目录

 

 private void CreateDir(string parPath)

    {

        string months = System.DateTime.Now.Month

        string dates = System.DateTime.Now.Day

 

        DirectoryInfo dyear = new DirectoryInfo(parPath + System.DateTime.Now.Year.ToString());

        DirectoryInfo dmonth = new DirectoryInfo(parPath + System.DateTime.Now.Year.ToString() + "//" + months);

        DirectoryInfo ddate = new DirectoryInfo(parPath + System.DateTime.Now.Year.ToString() + "//" + months + "//" + dates);

 

        if (!dyear.Exists)

        {

            dyear.Create();

            dmonth = dyear.CreateSubdirectory(months);

            ddate = dmonth.CreateSubdirectory(dates);

        }

        if (!dmonth.Exists)

        {

            dmonth.Create();

            ddate = dmonth.CreateSubdirectory(dates);

        }

        if (!ddate.Exists)

        {

            ddate.Create();

        }

    }

 

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn