मैं 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 का उपयोग करें।
आप इसे सरल बनाने के लिए एक नाम बदलें विधि बना सकते हैं।
उपयोग में आसानी
C # में VB असेंबली का उपयोग करें। 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);
}
नोट: इस उदाहरण कोड में हम एक निर्देशिका खोलते हैं और फ़ाइल के नाम पर खुले और बंद कोष्ठक के साथ पीडीएफ फाइलों की खोज करते हैं। आप अपने द्वारा पसंद किए गए नाम में किसी भी वर्ण की जांच कर सकते हैं या बदल सकते हैं या केवल एक नया नाम निर्दिष्ट कर सकते हैं।
इस कोड से काम करने के लिए और अधिक विस्तृत नाम बदलने के लिए अन्य तरीके हैं, लेकिन मेरा मुख्य उद्देश्य यह दिखाना था कि एक बैच का नाम बदलने के लिए File.Move का उपयोग कैसे करें। जब मैंने इसे अपने लैपटॉप पर चलाया तो 180 निर्देशिकाओं में 335 पीडीएफ फाइलों के खिलाफ काम किया। यह पल कोड का प्रेरणा है और इसे करने के अधिक विस्तृत तरीके हैं।
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);
}
}
मुझे एक मामले का सामना करना पड़ा जब मुझे इवेंट हैंडलर के अंदर फ़ाइल का नाम बदलना पड़ा, जो किसी भी फ़ाइल परिवर्तन के लिए ट्रिगर हो रहा था, जिसमें नाम बदलना भी शामिल था, और हमेशा के लिए मुझे उस फ़ाइल का नाम बदलने के लिए छोड़ देना था, जिसका नाम मेरे पास था:
File.Copy(fileFullPath, destFileName); // both has the format of "D:\..\..\myFile.ext"
Thread.Sleep(100); // wait OS to unfocus the file
File.Delete(fileFullPath);
अगर किसी के पास ऐसा है, तो ऐसे परिदृश्य में;)
जब 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);
}
}