0

我没有收到错误,但扩展名没有更改。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;


namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string filename;
            string[] filePaths = Directory.GetFiles(@"c:\Users\Desktop\test\");
            Console.WriteLine("Directory consists of " + filePaths.Length + " files.");
            foreach(string myfile in filePaths)
                filename = Path.ChangeExtension(myfile, ".txt");
            Console.ReadLine();
        }
    }
}
4

5 回答 5

14

Path.ChangeExtension只返回一个带有新扩展名的字符串,它不会重命名文件本身。

您需要使用System.IO.File.Move(oldName, newName)重命名实际文件,如下所示:

foreach (string myfile in filePaths)
{
    filename = Path.ChangeExtension(myfile, ".txt");
    System.IO.File.Move(myfile, filename);
}
于 2013-03-25T11:37:35.923 回答
2

Ì如果您想更改文件的扩展名,请调用File.Move().

于 2013-03-25T11:37:23.527 回答
1

这只会更改路径的扩展名,而不是文件的扩展名。

原因:由于 ChangeExtension 被称为Path.ChangeExtension. 对于文件,使用System.IO. FileClass 及其方法。

于 2013-03-25T11:36:22.380 回答
1

方法 ChangeExtension的文档说:

更改路径字符串的扩展名。

它并没有说它改变了文件的扩展名。

于 2013-03-25T11:36:44.900 回答
0

我认为这是大致等效(正确)的代码:

        DirectoryInfo di = new DirectoryInfo(@"c:\Users\Desktop\test\");
        foreach (FileInfo fi in di.GetFiles())
        {
            fi.MoveTo(fi.Name.Substring(0, fi.Name.Length - fi.Extension.Length - 1) + ".txt"); // "test.bat" 8 - 3 - 1 = 4 "test" + ".txt" = "test.txt"
        }
        Console.WriteLine("Directory consists of " + di.GetFiles().Length + " files.");
        Console.ReadLine();
于 2013-03-25T11:43:42.017 回答