使用File :: Exists的条件不起作用

时间:2014-11-27 11:17:53

标签: c# msbuild msbuild-4.0

我目前正在创建我的第一个MSBuild脚本。

我有一个标签“文件夹”,用于查找给定根路径中的所有目录:

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  <Target Name="Build">
    <PropertyGroup>
      <RootFolder>tmp</RootFolder>
    </PropertyGroup>
    <ItemGroup>
      <Folders Include="$([System.IO.Directory]::GetDirectories(&quot;$(RootFolder)&quot;))"/>
    </ItemGroup>
    <Message Text="@(Folders -> '%(FullPath)\Bin\Debug\%(Filename)%(Extension).dll', ';')"/>
  </Target>
</Project>

这很完美。 我的问题是我只需要指定文件所在的目录。 我试过这样的条件

Condition="$([System.IO.File]::Exists(&quot;%(FullPath)\\Bin\\Debug\\%(Filename)%(Extension).dll&quot;))"

表示文件夹标记。

此脚本运行时没有任何错误,但我的列表为空。 为什么呢?

是否还有其他方法可以检查文件?

我使用此解决方案是因为它使用C#而我是C#开发人员。

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  <Target Name="Build">
    <PropertyGroup>
      <RootFolders>tmp</RootFolders>
    </PropertyGroup>
    <GetFiles rootFolders="$(RootFolders)">
      <Output PropertyName="Files" TaskParameter="Files" />
    </GetFiles>
    <Message Text="$(Files)" />
  </Target>

  <UsingTask
      TaskName="GetFiles"
      TaskFactory="CodeTaskFactory"
      AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
      <ParameterGroup>
        <rootFolders ParameterType="System.String" Required="true" />
        <files ParameterType="System.String" Output="true" />
      </ParameterGroup>
      <Task>
          <Using Namespace="System" />
          <Using Namespace="System.IO" />
          <Using Namespace="System.Linq" />
          <Code Type="Fragment" Language="cs">
              <![CDATA[               
                  Func<string, string> BuildFilePath = path => path + @"\Bin\Debug\" + Path.GetFileName(path) + ".dll";
                  var dirs = Directory.GetDirectories(rootFolders).Where(x => File.Exists(BuildFilePath(x)));
                  files = string.Join("\n", dirs.Select(BuildFilePath));
              ]]>
          </Code>
      </Task>
  </UsingTask>
</Project>

1 个答案:

答案 0 :(得分:1)

AFAIK,执行事物Condition并检查整个项目声明(即<Folders ..>标签)。

我认为,您需要遍历集合(例如,使用目标/任务批处理)并检查该文件是否存在于集合中的每个文件夹文件夹中。然后,如果文件存在 - 将其包含在新的<FoldersFiletered>项集合中。

注意:我现在没有时间测试代码,但大致是这个想法:

<Target Name="FilterFolders"
    Inputs="@(Folders)"
    Outputs="%(FullPath)">
    <ItemGroup>
    <FoldersFiltered Include="@(Folders->'%(FullPath)')"
        Condition="$([System.IO.File]::Exists(&quot;@(Folders->'%(FullPath)'\\Bin\\Debug\\YourFile.dll&quot;))" />
    </ItemGroup>
</Target>
相关问题