我正在尝试编写一个命令行界面,开头有一个相关文件夹(/ dlls)中的DLL扫描,但一直抛出这个错误:找不到路径的一部分' / Users / danielshroff /项目/ MEH-重写/ MEH-重写/ bin中/调试/ DLL)的&#39 ;.路径存在,我已经使用finder goto文件夹
复制并完全跟踪它编辑:我也试过使用完整路径但没有运气
using System.IO;
namespace MehRewrite
{
class MainClass
{
public static void Main(string[] args)
{
Console.WriteLine("MEH System Version 1.0");
Console.WriteLine("Loading Core System");
Console.WriteLine("Declaring Startup Variables");
String dlls = null;
Console.WriteLine("Startup Variables Declared");
Console.WriteLine("Searching for dlls");
foreach (var file in Directory.GetFiles(@"./dlls)", "*.dll"))
{
dlls = dlls + file;
Console.WriteLine(file); }
int present = dlls.IndexOf("tinyMath.dll", StringComparison.Ordinal);
Console.Write("Enter Secure Mode? ");
variables.secure = Console.ReadLine();
答案 0 :(得分:1)
问题是你在传递给Directory.GetFiles的路径字符串的末尾有一个')'。
该行应为:
const Rectangle & Rectangle ::operator =(const Rectangle & rhs)