本文介绍了从USB驱动器获取所有图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要将所有图像从USB驱动器复制到本地文件夹。目前我得到了逻辑驱动器名称。(我的USB驱动器名称是G)。
i need to copy all the images from usb drive to local folder.currently i got the logical drive name.(my usb drive name is G).
推荐答案
string usbRoot = @"H:\";
string destFolder = @"C:\CopiedTo";
string[] files = Directory.GetFiles(usbRoot, "*.jpg", SearchOption.AllDirectories);
foreach (string file in files)
{
string dest = destFolder + file.Substring(usbRoot.Length);
if (!Directory.Exists(Path.GetDirectoryName(dest)))
{
Directory.CreateDirectory(Path.GetDirectoryName(dest));
}
File.Copy(file, dest, true);
}
这篇关于从USB驱动器获取所有图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!