使用Path.Combine()时,源和目标必须不同

时间:2019-11-27 15:40:31

标签: c#

我正在尝试为我的RPG创建一个批处理charsheet创建器。程序加载时,会在文件位置WORKINGDIR + WAITDIR中查找具有标签ReadyMaleFemale标签的所有图片文件,并将其放在WORKINGDIR + LIVEDIR中。 WORKINGDIR看起来像这样:

Debug // WORKINGDIR
├───Live // LIVEDIR
├───Wait // WAITDIR
├───Crew.exe // program
└───Other VS files

运行代码时,当我尝试将文件从一个移到另一个时,将引发错误System.IO.IOException: 'Source and destination path must be different.'sourcedestination以某种方式等效。

const string LIVEDIR = "\\Live";
const string WAITDIR = "\\Wait";
List<string> files = new List<string>(Directory.EnumerateFiles(WORKINGDIR + WAITDIR, "*.jpeg", SearchOption.TopDirectoryOnly));
files.AddRange(Directory.EnumerateFiles(WORKINGDIR + WAITDIR, "*.png", SearchOption.TopDirectoryOnly));
files.AddRange(Directory.EnumerateFiles(WORKINGDIR + WAITDIR, "*.jpg", SearchOption.TopDirectoryOnly));
// ^ adds files that need to be looked through
string[] tags;
ShellFile shellFile;
foreach(string file in files)
{
    string source = Path.Combine(WORKINGDIR, WAITDIR, file);
    string destination = Path.Combine(WORKINGDIR, LIVEDIR, file);
    /*if (source == destination)
        throw new Exception();
    */ // This is also thrown
    shellFile = ShellFile.FromFilePath(Path.Combine(WORKINGDIR, WAITDIR, file));
    tags = shellFile.Properties.System.Photo.TagViewAggregate.Value;
    int i = 0;
    crewMember.Gender foo = crewMember.Gender.Female;
    if (tags == null)
        continue;
    foreach(string tag in tags)
    {
        if(tag == "Ready")
        {
            i++;
        }
        if(tag == "Female")
        {
            i++;
            foo = crewMember.Gender.Female;
        }
        else if(tag == "Male")
        {
            i++;
            foo = crewMember.Gender.Male;
        }
    }

    if(i>=2) // if it has two correct tags
    {
        Console.WriteLine(
            $"source:      {source}\n" +
            $"Destination: {destination}");
        // ^ also writes the same paths to console.
        Directory.Move(source, destination);
        // ^ Error
        crewMembers.Add(new crewMember(file, foo));
    }
}

我认为这是由于Path.Combine()出于任何原因返回的是先前生成的字符串而不是新字符串。有没有解决的办法,或者我用错了吗?

2 个答案:

答案 0 :(得分:6)

方法Directory.EnumerateFiles给出absolute paths,因此每个file变量都包含一个绝对路径。

如果您提供Path.Combine的多个绝对路径,它将输出最后一个:

Path.Combine("C:\\", "workdir", "C:\\outdir\\test.txt")

收益

C:\outdir\test.txt

Try it)。

这是因为Path.Combine方法尝试进行root the output path

  

但是,如果第一个参数以外的参数包含一个根目录路径,则任何先前的路径成分都将被忽略,并且返回的字符串以该根目录路径成分开头。

特别是对于将文件名作为用户输入的应用程序,这是常见的安全隐患

相反,要么先使用Path.GetFileName来获取纯文件名,要么如果可以访问.NET Core,则使用新的和更安全的Path.Join方法合并路径。

答案 1 :(得分:1)

或者,您可以使用PhysicalFileProvider进行枚举,它返回IFileInfo个实例,您可以在这些实例上直接查询Name

这种方法使其更具可测试性。