本文介绍了C#创建YYYY-MM-DD DIR容易的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我应该怎么做才能创造YYYY / MM / DD目录容易吗?
mysite.com/blog**/2009/01/01/**hello-world.aspx!
解决方案
的String.Format(CultureInfo.InvariantCulture,
mysite.com/blog* * / {0:YYYY / MM / DD} / ** HELLO-world.aspx,
DateTime.Now)
会得到你的日期。您可以添加更多的参数,它得到它恰到好处。
How should i do to create yyyy/mm/dd directory easy?
mysite.com/blog**/2009/01/01/**hello-world.aspx!
解决方案
String.Format(CultureInfo.InvariantCulture,
"mysite.com/blog**/{0:yyyy/MM/dd}/**hello-world.aspx",
DateTime.Now)
Will get you the date. You can add more parameters to it to get it just right.
这篇关于C#创建YYYY-MM-DD DIR容易的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!