一,已经有路径 C:\ Windows\PhotoShop\ShellBrd. txt编写一个控制台程序, 主要实现从字符串中分离文件路径、文件名及扩展名
时间: 2024-11-09 16:24:01 浏览: 9
shellbrd_测试文件_
为了编写一个控制台程序,用于从给定的字符串"C:\ Windows\PhotoShop\ShellBrd.txt"中提取文件路径、文件名和扩展名,我们可以使用C#的字符串操作和正则表达式。以下是简单的步骤和示例代码:
首先,确保安装了`System.Text.RegularExpressions`命名空间,该命名空间包含正则表达式相关的功能。
```csharp
using System;
using System.IO;
using System.Text.RegularExpressions;
namespace FilePathExtractor
{
class Program
{
static void Main(string[] args)
{
string inputFilePath = @"C:\ Windows\PhotoShop\ShellBrd.txt";
string[] pathComponents = ExtractFileParts(inputFilePath);
Console.WriteLine("路径: " + pathComponents[0]);
Console.WriteLine("文件名: " + pathComponents[1]);
Console.WriteLine("扩展名: " + pathComponents[2]);
//
阅读全文