如何以字符串形式返回目录中的最新文件?
我希望能够将最新项目(已创建)作为程序中的字符串返回,
例如 s = test.txt
“下载”目录
text.txt Date created 4/5/2011
something.txt Date created 1/1/2011
I would like to be able to return the newest item (that has been created) as a string within a program
e.g. s = test.txt
the "download" directory
text.txt Date created 4/5/2011
something.txt Date created 1/1/2011
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样
How about
基于 MSDN 中的代码片段
Based on the code snippet from MSDN