每个c#控制台应用程序打印“系统无法找到指定的路径”
本文关键字:路径 控制台 应用程序 打印 系统 每个 | 更新日期: 2023-09-27 18:03:28
每次我运行c#控制台应用程序(无论是Visual c# Express 2010还是Visual Studio Ultimate 2010)时,输出的第一行是
系统找不到指定的路径
,即使我的程序没有做任何事情,也没有指定任何路径。为什么会发生这种情况?有没有办法检查它寻找的路径是什么?否则程序运行良好。我试图捕捉一个System.IO.DirectoryNotFoundException,但无法找出在哪里放置try/catch块。
我正在运行Windows 7 x64,构建控制台应用程序,并尝试了所有不同的平台目标(x86, x64, AnyCPU),我可以在Visual Studio中,总是得到相同的
我一直有一些其他的问题,并有预感这可能与那些有关,这就是为什么我试图弄清楚。谢谢!
下面是Visual Studio生成的z .csproj文件(该项目显示了我所描述的从命令行运行或从VS运行时的问题行为)
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{04EC9A5E-74D8-4A5F-BCD3-05D9B6CA1477}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>UsingNLOpt</RootNamespace>
<AssemblyName>UsingNLOpt</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin'Debug'</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin'Release'</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties'AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)'Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
EDIT: Solved -在Microsoft Console的注册表中自动运行一个不存在的目录。请看下面的答案。
你能检查一下你的注册表吗:
'Software'Microsoft'Command Processor'AutoRun
在HKEY_LOCAL_MACHINE和HKEY_CURRENT_USER荨麻?
可能是命令处理器试图在启动时运行一些不存在的东西