ฉันจะเปลี่ยนชื่อไฟล์โดยใช้ C # ได้อย่างไร
ฉันจะเปลี่ยนชื่อไฟล์โดยใช้ C # ได้อย่างไร
คำตอบ:
ลองดูที่System.IO.File.Move "ย้าย" ไฟล์ไปยังชื่อใหม่
System.IO.File.Move("oldfilename", "newfilename");
System.IO.File.Move(oldNameFullPath, newNameFullPath);
ในวิธีการ File.Move สิ่งนี้จะไม่เขียนทับไฟล์หากมีอยู่แล้ว และมันจะโยนข้อยกเว้น
ดังนั้นเราต้องตรวจสอบว่ามีไฟล์อยู่หรือไม่
/* Delete the file if exists, else no exception thrown. */
File.Delete(newFileName); // Delete the existing file if exists
File.Move(oldFileName,newFileName); // Rename the oldFileName into newFileName
หรือล้อมรอบด้วยลองจับเพื่อหลีกเลี่ยงข้อยกเว้น
คุณสามารถใช้File.Move
เพื่อทำมัน
เพียงเพิ่ม:
namespace System.IO
{
public static class ExtendedMethod
{
public static void Rename(this FileInfo fileInfo, string newName)
{
fileInfo.MoveTo(fileInfo.Directory.FullName + "\\" + newName);
}
}
}
แล้ว ...
FileInfo file = new FileInfo("c:\test.txt");
file.Rename("test2.txt");
ทางออกแรก
หลีกเลี่ยงการSystem.IO.File.Move
แก้ปัญหาที่โพสต์ที่นี่ มันล้มเหลวผ่านเครือข่าย อย่างไรก็ตามรูปแบบการคัดลอก / ลบทำงานได้ทั้งในและนอกเครือข่าย ปฏิบัติตามหนึ่งในโซลูชันย้าย แต่แทนที่ด้วยคัดลอกแทน จากนั้นใช้ File.Delete เพื่อลบไฟล์ต้นฉบับ
คุณสามารถสร้างวิธีการเปลี่ยนชื่อเพื่อให้ง่ายขึ้น
สะดวกในการใช้
ใช้แอสเซมบลี VB ใน C # เพิ่มการอ้างอิงถึง Microsoft.VisualBasic
จากนั้นเปลี่ยนชื่อไฟล์:
Microsoft.VisualBasic.FileIO.FileSystem.RenameFile(myfile, newName);
ทั้งสองเป็นสตริง โปรดทราบว่า myfile มีเส้นทางแบบเต็ม newName ไม่ได้ ตัวอย่างเช่น:
a = "C:\whatever\a.txt";
b = "b.txt";
Microsoft.VisualBasic.FileIO.FileSystem.RenameFile(a, b);
โฟลเดอร์นี้จะมีC:\whatever\
b.txt
smb
) ftp
, ssh
หรือสิ่งที่ทุกคนมีคำสั่ง / วิทยาการสำหรับแฟ้มย้าย / เปลี่ยนชื่อเว้นแต่ไม่ได้รับอนุญาต (เช่นอ่านอย่างเดียว)
คุณสามารถคัดลอกเป็นไฟล์ใหม่แล้วลบไฟล์เก่าโดยใช้System.IO.File
คลาส:
if (File.Exists(oldName))
{
File.Copy(oldName, newName, true);
File.Delete(oldName);
}
หมายเหตุ:ในรหัสตัวอย่างนี้เราเปิดไดเรกทอรีและค้นหาไฟล์ PDF ด้วยวงเล็บเปิดและปิดในชื่อของไฟล์ คุณสามารถตรวจสอบและแทนที่ตัวอักษรใด ๆ ในชื่อที่คุณชอบหรือเพียงแค่ระบุชื่อใหม่โดยใช้ฟังก์ชั่นแทนที่
มีวิธีอื่นในการทำงานจากรหัสนี้เพื่อทำการเปลี่ยนชื่ออย่างละเอียดมากขึ้น แต่ความตั้งใจหลักของฉันคือการแสดงวิธีการใช้ File.Move เพื่อทำการเปลี่ยนชื่อชุด สิ่งนี้ใช้ได้กับไฟล์ PDF 335 ไฟล์ใน 180 ไดเรกทอรีเมื่อฉันใช้งานบนแล็ปท็อปของฉัน นี่คือการกระตุ้นของรหัสช่วงเวลาและมีวิธีการทำอย่างละเอียดมากขึ้น
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BatchRenamer
{
class Program
{
static void Main(string[] args)
{
var dirnames = Directory.GetDirectories(@"C:\the full directory path of files to rename goes here");
int i = 0;
try
{
foreach (var dir in dirnames)
{
var fnames = Directory.GetFiles(dir, "*.pdf").Select(Path.GetFileName);
DirectoryInfo d = new DirectoryInfo(dir);
FileInfo[] finfo = d.GetFiles("*.pdf");
foreach (var f in fnames)
{
i++;
Console.WriteLine("The number of the file being renamed is: {0}", i);
if (!File.Exists(Path.Combine(dir, f.ToString().Replace("(", "").Replace(")", ""))))
{
File.Move(Path.Combine(dir, f), Path.Combine(dir, f.ToString().Replace("(", "").Replace(")", "")));
}
else
{
Console.WriteLine("The file you are attempting to rename already exists! The file path is {0}.", dir);
foreach (FileInfo fi in finfo)
{
Console.WriteLine("The file modify date is: {0} ", File.GetLastWriteTime(dir));
}
}
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
Console.Read();
}
}
}
หวังว่า! มันจะเป็นประโยชน์สำหรับคุณ :)
public static class FileInfoExtensions
{
/// <summary>
/// behavior when new filename is exist.
/// </summary>
public enum FileExistBehavior
{
/// <summary>
/// None: throw IOException "The destination file already exists."
/// </summary>
None = 0,
/// <summary>
/// Replace: replace the file in the destination.
/// </summary>
Replace = 1,
/// <summary>
/// Skip: skip this file.
/// </summary>
Skip = 2,
/// <summary>
/// Rename: rename the file. (like a window behavior)
/// </summary>
Rename = 3
}
/// <summary>
/// Rename the file.
/// </summary>
/// <param name="fileInfo">the target file.</param>
/// <param name="newFileName">new filename with extension.</param>
/// <param name="fileExistBehavior">behavior when new filename is exist.</param>
public static void Rename(this System.IO.FileInfo fileInfo, string newFileName, FileExistBehavior fileExistBehavior = FileExistBehavior.None)
{
string newFileNameWithoutExtension = System.IO.Path.GetFileNameWithoutExtension(newFileName);
string newFileNameExtension = System.IO.Path.GetExtension(newFileName);
string newFilePath = System.IO.Path.Combine(fileInfo.Directory.FullName, newFileName);
if (System.IO.File.Exists(newFilePath))
{
switch (fileExistBehavior)
{
case FileExistBehavior.None:
throw new System.IO.IOException("The destination file already exists.");
case FileExistBehavior.Replace:
System.IO.File.Delete(newFilePath);
break;
case FileExistBehavior.Rename:
int dupplicate_count = 0;
string newFileNameWithDupplicateIndex;
string newFilePathWithDupplicateIndex;
do
{
dupplicate_count++;
newFileNameWithDupplicateIndex = newFileNameWithoutExtension + " (" + dupplicate_count + ")" + newFileNameExtension;
newFilePathWithDupplicateIndex = System.IO.Path.Combine(fileInfo.Directory.FullName, newFileNameWithDupplicateIndex);
} while (System.IO.File.Exists(newFilePathWithDupplicateIndex));
newFilePath = newFilePathWithDupplicateIndex;
break;
case FileExistBehavior.Skip:
return;
}
}
System.IO.File.Move(fileInfo.FullName, newFilePath);
}
}
วิธีใช้รหัสนี้
class Program
{
static void Main(string[] args)
{
string targetFile = System.IO.Path.Combine(@"D://test", "New Text Document.txt");
string newFileName = "Foo.txt";
// full pattern
System.IO.FileInfo fileInfo = new System.IO.FileInfo(targetFile);
fileInfo.Rename(newFileName);
// or short form
new System.IO.FileInfo(targetFile).Rename(newFileName);
}
}
ใช้:
using System.IO;
string oldFilePath = @"C:\OldFile.txt"; // Full path of old file
string newFilePath = @"C:\NewFile.txt"; // Full path of new file
if (File.Exists(newFilePath))
{
File.Delete(newFilePath);
}
File.Move(oldFilePath, newFilePath);
Using System.IO;
) หรือไม่?
ในกรณีของฉันฉันต้องการให้ชื่อของไฟล์ที่ถูกเปลี่ยนชื่อนั้นไม่ซ้ำกันดังนั้นฉันจึงเพิ่มการประทับวันที่ลงในชื่อ ด้วยวิธีนี้ชื่อไฟล์ของบันทึก 'เก่า' จะไม่ซ้ำกันเสมอ:
if (File.Exists(clogfile))
{
Int64 fileSizeInBytes = new FileInfo(clogfile).Length;
if (fileSizeInBytes > 5000000)
{
string path = Path.GetFullPath(clogfile);
string filename = Path.GetFileNameWithoutExtension(clogfile);
System.IO.File.Move(clogfile, Path.Combine(path, string.Format("{0}{1}.log", filename, DateTime.Now.ToString("yyyyMMdd_HHmmss"))));
}
}
การย้ายทำสิ่งเดียวกัน = คัดลอกและลบอันเก่า
File.Move(@"C:\ScanPDF\Test.pdf", @"C:\BackupPDF\" + string.Format("backup-{0:yyyy-MM-dd_HH:mm:ss}.pdf",DateTime.Now));
ฉันไม่สามารถหาวิธีที่เหมาะสมกับฉันดังนั้นฉันจึงเสนอรุ่นของฉัน แน่นอนต้องป้อนข้อมูลการจัดการข้อผิดพลาด
public void Rename(string filePath, string newFileName)
{
var newFilePath = Path.Combine(Path.GetDirectoryName(filePath), newFileName + Path.GetExtension(filePath));
System.IO.File.Move(filePath, newFilePath);
}
public static class ImageRename
{
public static void ApplyChanges(string fileUrl,
string temporaryImageName,
string permanentImageName)
{
var currentFileName = Path.Combine(fileUrl,
temporaryImageName);
if (!File.Exists(currentFileName))
throw new FileNotFoundException();
var extention = Path.GetExtension(temporaryImageName);
var newFileName = Path.Combine(fileUrl,
$"{permanentImageName}
{extention}");
if (File.Exists(newFileName))
File.Delete(newFileName);
File.Move(currentFileName, newFileName);
}
}
ฉันพบกรณีเมื่อฉันต้องเปลี่ยนชื่อไฟล์ใน event handler ซึ่งเรียกการเปลี่ยนแปลงไฟล์ใด ๆ รวมถึงการเปลี่ยนชื่อและข้ามการเปลี่ยนชื่อไฟล์ตลอดไปฉันต้องเปลี่ยนชื่อใหม่ด้วย:
File.Copy(fileFullPath, destFileName); // both has the format of "D:\..\..\myFile.ext"
Thread.Sleep(100); // wait OS to unfocus the file
File.Delete(fileFullPath);
ในกรณีที่มีใครบางคนจะมีสถานการณ์เช่นนี้;)
int rename(const char * oldname, const char * newname);
เปลี่ยนชื่อฟังก์ชั่น () กำหนดไว้ในไฟล์ส่วนหัว stdio.h เปลี่ยนชื่อไฟล์หรือไดเรกทอรีจาก oldname เป็น newname การดำเนินการเปลี่ยนชื่อเหมือนกับย้ายดังนั้นคุณสามารถใช้ฟังก์ชันนี้เพื่อย้ายไฟล์
เมื่อ C # ไม่มีคุณสมบัติฉันใช้ C ++ หรือ C:
public partial class Program
{
[DllImport("msvcrt", CallingConvention = CallingConvention.Cdecl, SetLastError = true)]
public static extern int rename(
[MarshalAs(UnmanagedType.LPStr)]
string oldpath,
[MarshalAs(UnmanagedType.LPStr)]
string newpath);
static void FileRename()
{
while (true)
{
Console.Clear();
Console.Write("Enter a folder name: ");
string dir = Console.ReadLine().Trim('\\') + "\\";
if (string.IsNullOrWhiteSpace(dir))
break;
if (!Directory.Exists(dir))
{
Console.WriteLine("{0} does not exist", dir);
continue;
}
string[] files = Directory.GetFiles(dir, "*.mp3");
for (int i = 0; i < files.Length; i++)
{
string oldName = Path.GetFileName(files[i]);
int pos = oldName.IndexOfAny(new char[] { '0', '1', '2' });
if (pos == 0)
continue;
string newName = oldName.Substring(pos);
int res = rename(files[i], dir + newName);
}
}
Console.WriteLine("\n\t\tPress any key to go to main menu\n");
Console.ReadKey(true);
}
}