我试图通过重命名我的一堆JPG,但是我尝试过的却没有工作,我不知道还有什么可以尝试。
该程序适用于文件夹和.txt但不适用于我的.JPG图像,还有其他解决方案可以重命名,但不适用于.JPG。有谁知道我可以改变什么?
我也尝试了File.Move
,但它们都返回了相同的错误消息,
File not found exception was unhandled. Could not find file
(我确信我的道路是正确的)
private void startRenaming_Click(object sender, EventArgs e)
{
string old_name = @"C:\Users\u587945\Desktop\Vial_Suction_Test\Postion_1\Cycle_1.JPG",
new_name = @"C:\Users\u587945\Desktop\Vial_Suction_Test\Postion_1\Cycle_1_Vial_1.JPG";
bool exists = System.IO.Directory.Exists(old_name);
if (exists)
{
MessageBox.Show("Found Directory!!!");
System.IO.Directory.Move(old_name, new_name);
}
else
{
MessageBox.Show("Directory not found");
}
}