.NET后端通过本地地址(C:\\Users\\曾彬\\Desktop\\UpdateOld\\bin\\Debug\\2023112420385119805.jpg),更改图片名的案例
时间: 2023-11-25 07:05:18 浏览: 61
以下是.NET后端通过本地地址更改图片名的案例:
```csharp
using System;
using System.IO;
namespace RenameImage
{
class Program
{
static void Main(string[] args)
{
string oldPath = @"C:\Users\曾彬\Desktop\UpdateOld\bin\Debug\2023112420385119805.jpg";
string newPath = @"C:\Users\曾彬\Desktop\UpdateOld\bin\Debug\newName.jpg";
// 检查文件是否存在
if (File.Exists(oldPath))
{
// 更改文件名
File.Move(oldPath, newPath);
Console.WriteLine("文件名更改成功!");
}
else
{
Console.WriteLine("文件不存在!");
}
}
}
}
```
相关问题
.NET后端获取C:\Users\曾彬\Pictures\Saved Pictures\壁纸\14.jpg路径的案例
在.NET后端中获取文件路径可以使用System.IO命名空间中的Path类。具体实现如下:
```csharp
string filePath = Path.Combine(@"C:\Users\曾彬\Pictures\Saved Pictures\壁纸", "14.jpg");
Console.WriteLine(filePath); // 输出:C:\Users\曾彬\Pictures\Saved Pictures\壁纸\14.jpg
```
.NET后端获取C:\Users\曾彬\Pictures\Saved Pictures\壁纸\14.jpg中C:\Users\曾彬\Pictures\Saved Pictures\壁纸部分的案例
在.NET后端中获取文件路径中的某一部分可以使用System.IO命名空间下的Path类中的GetDirectoryName方法。该方法可以返回指定路径字符串的目录信息,即文件路径中除去文件名的部分。以下是一个获取文件路径中目录信息的示例代码:
```csharp
using System.IO;
string filePath = @"C:\Users\曾彬\Pictures\Saved Pictures\壁纸\14.jpg";
string directoryName = Path.GetDirectoryName(filePath);
Console.WriteLine(directoryName); // 输出:C:\Users\曾彬\Pictures\Saved Pictures\壁纸
```
在上述代码中,首先引入了System.IO命名空间,然后定义了一个文件路径字符串filePath。接着使用Path类的GetDirectoryName方法获取filePath中的目录信息,并将结果赋值给directoryName变量。最后使用Console.WriteLine方法输出directoryName的值,即文件路径中除去文件名的部分。
阅读全文