C# 根据完整路径名获取 文件名、所在目录的方法
// tbFilePath.Text=E:\文档\EAA\test.data string path = System.IO.Path.GetFullPath( tbFilePath.Text); // path=E:\文档\EAA\test.data string path1 = System.IO.Path.GetDirectoryName(tbFilePath.Text); // path=E:\文档\EAA\ string path2 = System.IO.Path.GetPathRoot( tbFilePath.Text); // path=E:\ string newName= System.IO.Path.GetFileName(tbFilePath.Text); // newName=test.data