标签: vb.net
我试图将C:\中的所有pdf文件移动到E:\mypdf中,我使用以下代码:
C:\
E:\mypdf
For Each x In New DirectoryInfo("C:\").GetFiles("*.pdf", SearchOption.AllDirectories) File.Copy(x.FullName, Path.Combine("E:\mypdf", x.Name), False) Next
如何忽略需要管理员权限的文件夹?