FileNotFoundException 和文件路径

发布于 2024-10-14 11:03:45 字数 396 浏览 6 评论 0原文

例外:

无法加载文件或程序集 '文件:///C:\Program%20Files\Microsoft%20Visual%20Studio%209.0\Common7\IDE\Projects\SourceCode_TradeProcessor_branch\BIN\FxGate\LoaderService\Plugins\FixExchangeProvider\FixExchangeProvider.dll' 或其依赖项之一。系统 找不到指定的文件。

代码:

parserPlugin = Assembly.LoadFrom(_transport.Path);

文件路径存在。是因为路径格式还是什么原因?

Exception:

Could not load file or assembly
'file:///C:\Program%20Files\Microsoft%20Visual%20Studio%209.0\Common7\IDE\Projects\SourceCode_TradeProcessor_branch\BIN\FxGate\LoaderService\Plugins\FixExchangeProvider\FixExchangeProvider.dll'
or one of its dependencies. The system
cannot find the file specified.

code:

parserPlugin = Assembly.LoadFrom(_transport.Path);

The filepath exists. Is it because of path format or what?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

相守太难 2024-10-21 11:03:45

“......或其依赖项之一”。检查您的程序集引用的 dll 是否位于同一文件夹中。

"...or one of its dependencies". Check if the dll's your assembly references are in the same folder.

樱花落人离去 2024-10-21 11:03:45

也许:

parserPlugin = Assembly.LoadFrom(new Uri(_transport.Path).LocalPath);

会更好吗?

Maybe:

parserPlugin = Assembly.LoadFrom(new Uri(_transport.Path).LocalPath);

would work better?

染年凉城似染瑾 2024-10-21 11:03:45

我的猜测是权限,如果运行程序的用户甚至没有权限查看文件夹中的内容,则必须假设该文件不存在。

My guess would be permissions, if the user the program's running under doesn't even have permission to see what's in the folder it'll have to assume the file's not there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文