gpt4 book ai didi

c# - System.IO.DirectoryNotFoundException,找不到路径的一部分

转载 作者:行者123 更新时间:2023-11-30 21:43:12 27 4
gpt4 key购买 nike

我试图在特定目录中查找所有 jpg 文件,但出现此错误

Additional information: Could not find a part of the path 'C:\Users\myPC\Proj\Image Blur\bin\Debug\aaaa'.

private void backgroundWorker2_DoWork(object sender, DoWorkEventArgs e)
{
ApplyFilter(false);
string filepath = Environment.CurrentDirectory + "\\aaaa\\";
ImageFormat imgFormat = ImageFormat.Jpeg;
foreach (var imageFile in Directory.GetFiles(filepath, "*.jpg"))
{
string fullPath = filepath + imageFile;
try
{
ExtBitmap.BlurType blurType =
((ExtBitmap.BlurType)cmbBlurFilter.SelectedItem);

resultBitmap.ImageBlurFilter(blurType);
resultBitmap.Save(fullPath, imgFormat);
resultBitmap = null;
}
catch
{
}
}
}

路径确实存在,而且还包含jpg文件

最佳答案

我遇到了这个异常,我可以看到文件夹中的文件。原来这是因为该文件位于已安装的驱动器上,该驱动器是为我登录时所用的用户安装的,但未为运行该应用程序的用户安装。

为应用程序用户安装驱动器修复了它。

关于c# - System.IO.DirectoryNotFoundException,找不到路径的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41917893/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com