Silverlight遍历本地用户文件夹,由于安全性考虑,Silverlight只能遍历我的文档,我的视频,我的图片,我的音乐四个本地文件夹,而且只能运行于Out-Of-broswer模式中
帖代码:
Dim folderList As New List(Of String) 'Directory.Enumeratefiles 用于在被受信任的应用程序调用时,返回指定路径中文件名的可枚举集合 'Environment.GetFolderPath:用来返回文件的完整路径 'Environment.SpecialFolder:包含我们需要获取的文件类型 Dim docs = Directory.Enumeratefiles(Environment.GetFolderPath(System.Environment.SpecialFolder.Mydocuments)) '我的文档 Dim vIDeos = Directory.Enumeratefiles(Environment.GetFolderPath(System.Environment.SpecialFolder.MyVIDeos)) '我的视频 Dim photos = Directory.Enumeratefiles(Environment.GetFolderPath(System.Environment.SpecialFolder.MyPictures)) '我的图片 Dim music = Directory.Enumeratefiles(Environment.GetFolderPath(System.Environment.SpecialFolder.MyMusic)) '我的音乐 For Each item As String In docs folderList.Add(item) Next Me.lstfiles.ItemsSource = folderList
总结以上是内存溢出为你收集整理的SilverLight-遍历本地文件夹全部内容,希望文章能够帮你解决SilverLight-遍历本地文件夹所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)