上述代码把盘符路径去掉 只保留最后文件名称
时间: 2025-01-05 14:38:00 浏览: 4
要从盘符路径中提取出最后文件名称,可以使用多种方法,具体取决于你使用的编程语言。以下是一些常见编程语言的示例:
### Python
```python
import os
file_path = "C:\\Users\\example\\file.txt"
file_name = os.path.basename(file_path)
print(file_name) # 输出: file.txt
```
### Java
```java
public class FileNameExtractor {
public static void main(String[] args) {
String filePath = "C:\\Users\\example\\file.txt";
File file = new File(filePath);
String fileName = file.getName();
System.out.println(fileName); // 输出: file.txt
}
}
```
### C#
```csharp
using System;
class Program
{
static void Main()
{
string filePath = @"C:\Users\example\file.txt";
string fileName = Path.GetFileName(filePath);
Console.WriteLine(fileName); // 输出: file.txt
}
}
```
### JavaScript (Node.js)
```javascript
const path = require('path');
const filePath = "C:\\Users\\example\\file.txt";
const fileName = path.basename(filePath);
console.log(fileName); // 输出: file.txt
```
这些代码片段都使用了各自语言的标准库函数来获取文件路径中的最后文件名称。
阅读全文