0

我写了一个数据分类器,它为它正在写入的文件写出一个 .build 扩展名,所以当它向特定文件写入数据时,没有任何东西试图提升它。

最后,我想在程序关闭之前将任何带有 .build 扩展名的内容重命名为 .dat 。

 For Each f In outputFiles

        For Each r In TrailerRecords

            ' Set the bill count variable
            If r.VariableField Then
                r.Fields(1) = String.Format("{0:000000}", f.Value)
            End If

            ' Write the trailer record to the output file
            File.AppendAllText(f.Key, r.ToString() & vbLf)
        Next

        ' Rename all.build files to .dat

NEEDS TO GO HERE

        ' Copy each output file to the backup directory
        File.Copy(f.Key, Path.Combine(backupFolder, Path.GetFileName(f.Key)), True)
    Next
End Sub
4

1 回答 1

5

获取文件并重命名:

Dim auxFile as String
Dim files() As String = IO.Directory.GetFiles(myFolderPath, "*.build")

For Each sFile As String In files
    auxFile = IO.Path.GetFileNameWithoutExtension(sFile) & ".dat"
    My.Computer.FileSystem.RenameFile(sFile, auxFile)
Next

您可以使用File.Copy()覆盖属性来True代替。

看看 MSDN 文档:

于 2013-03-12T13:12:51.077 回答