gpt4 book ai didi

c# - SSIS使用脚本任务重命名目录中的文件

转载 作者:太空狗 更新时间:2023-10-30 01:29:25 25 4
gpt4 key购买 nike

我正在使用下面的代码,用时间戳重命名文件夹中的所有文件。但它抛出异常。

请提出任何解决方案。

using System.IO;

public void Main()
{
DirectoryInfo directoryInfo = new DirectoryInfo(@"C:\\Users\\AShubhankar\\Desktop\\archive_feb");
//if the director exists then proceed
if (directoryInfo.Exists)
{
var fileList = directoryInfo.GetFiles();

foreach (FileInfo fleInfo in fileList)
{
var newFileName = GetNewFileName(fleInfo);
//copies the new file names
fleInfo.CopyTo(newFileName, true);
//delete the old/original files
fleInfo.Delete();
}
Dts.TaskResult = (int)ScriptResults.Success;
}
else
{
MessageBox.Show("Directory not found");
Dts.TaskResult = (int)ScriptResults.Failure;
}
}

// Function to get the new file name
private static string GetNewFileName(FileInfo fleInfo)
{
var shortDate = DateTime.Now.ToShortDateString().Replace("/", string.Empty);
var format = string.Format("{0}_{1}", shortDate);
var extension = ".txt";
return Path.Combine(fleInfo.DirectoryName,
string.Concat(fleInfo.Name.Split('.')[0], "_", format, extension));
}

抛出异常:

Image of the error description

最佳答案

首先,在字符串前使用@时,不要使用\\,因为@符号是用来标记的字符串作为逐字字符串文字。因此,字符串中通常被解释为转义序列的任何内容都将被忽略。

DirectoryInfo directoryInfo = new DirectoryInfo(@"C:\Users\AShubhankar\Desktop\archive_feb");

或者你可以使用:

DirectoryInfo directoryInfo = new DirectoryInfo("C:\\Users\\AShubhankar\\Desktop\\archive_feb");    

其次,无需复制文件然后删除旧文件,只需使用Move 功能重命名文件即可。


您也可以使用以下代码(更简单的版本):

public void Main()
{
string strdirectory = @"C:\Users\AShubhankar\Desktop\archive_feb";
//if the director exists then proceed
if (Directory.Exists(strdirectory))
{
string[] fileList = Directory.GetFiles(strdirectory,"*.*",SearchOption.AllDirectories);

foreach (string strfile in fileList)
{
string newFileName = GetNewFileName(strfile);
//rename the new file
File.Move(strfile, newFileName);

}
Dts.TaskResult = (int)ScriptResults.Success;
}
else
{
MessageBox.Show("Directory not found");
Dts.TaskResult = (int)ScriptResults.Failure;
}
}

// Function to get the new file name
public string GetNewFileName(string strfile)
{
string shortDate = DateTime.Now.ToString("yyyyMMdd_HHmmss");
string extension = ".txt";
return string.Concat(Path.GetDirectoryName(strfile),Path.GetFileNameWithoutExtension(strfile), "_", shortDate, extension);
}

引用资料

关于c# - SSIS使用脚本任务重命名目录中的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52014827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com