如何获得isolatedStorage中所有文件的平面列表?
我需要获取给定isolatedStorage文件夹中所有文件的列表。 IndependentStorage 的根目录下有一些子文件夹,这些子文件夹需要包含在列表中。
通常的 System.IO 类不能与isolatedStorage 一起使用。
I need to get a list of all files in a given IsolatedStorage folder. There are sub folders off the root of the IsolatedStorage and these need to be included in the list.
The usual System.IO classes can't be used with IsolatedStorage.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我想出的 - 它有效,但我有兴趣看看是否有更好的替代方案:
Here's what I've come up with - it works but I'd be interested to see if there are better alternatives:
你是个天才,但在检索新目录时,你必须将它们的路径与初始目录结合起来。
You're genius but also when retrieving the new directories you have to combine their path with the initial directory.