Получить имя файла из строки пути в C # - PullRequest
239 голосов
/ 03 августа 2011

Я программирую в WPF C #. У меня есть например следующий путь:

C:\Program Files\hello.txt

и я хочу вывести " привет " из него.

Путь - это извлечение строки из базы данных. В настоящее время я использую следующий метод (разделить путь путем '\', а затем разделить снова путем '.'):

string path = "C:\\Program Files\\hello.txt";
string[] pathArr = path.Split('\\');
string[] fileArr = pathArr.Last().Split('.');
string fileName = fileArr.Last().ToString();

Это работает, но я считаю, что должно быть более короткое и разумное решение для этого. Есть идеи?

Ответы [ 10 ]

468 голосов
/ 03 августа 2011
77 голосов
/ 03 августа 2011

попробуй

fileName = Path.GetFileName (path);

http://msdn.microsoft.com/de-de/library/system.io.path.getfilename.aspx

28 голосов
/ 03 августа 2011

попробуй

System.IO.Path.GetFileNameWithoutExtension(path); 

демо

string fileName = @"C:\mydir\myfile.ext";
string path = @"C:\mydir\";
string result;

result = Path.GetFileNameWithoutExtension(fileName);
Console.WriteLine("GetFileNameWithoutExtension('{0}') returns '{1}'", 
    fileName, result);

result = Path.GetFileName(path);
Console.WriteLine("GetFileName('{0}') returns '{1}'", 
    path, result);

// This code produces output similar to the following:
//
// GetFileNameWithoutExtension('C:\mydir\myfile.ext') returns 'myfile'
// GetFileName('C:\mydir\') returns ''

https://msdn.microsoft.com/en-gb/library/system.io.path.getfilenamewithoutextension%28v=vs.80%29.aspx

23 голосов
/ 03 августа 2011

Вы можете использовать Путь API следующим образом:

 var filenNme = Path.GetFileNameWithoutExtension([File Path]);

Дополнительная информация: Path.GetFileNameWithoutExtension

17 голосов
/ 03 августа 2011
var fileNameWithoutExtension = Path.GetFileNameWithoutExtension(path);

Path.GetFileNameWithoutExtension

10 голосов
/ 03 августа 2011

Попробуйте это:

string fileName = Path.GetFileNameWithoutExtension(@"C:\Program Files\hello.txt");

Это вернет "привет" для fileName.

8 голосов
/ 27 августа 2015
string Location = "C:\\Program Files\\hello.txt";

string FileName = Location.Substring(Location.LastIndexOf('\\') +
    1);
6 голосов
/ 27 июня 2017

Попробуйте,

string FilePath=@"C:\mydir\myfile.ext";
string Result=Path.GetFileName(FilePath);//With Extension
string Result=Path.GetFileNameWithoutExtension(FilePath);//Without Extension
1 голос
/ 31 января 2019
string filepath = "C:\\Program Files\\example.txt";
FileVersionInfo myFileVersionInfo = FileVersionInfo.GetVersionInfo(filepath);
FileInfo fi = new FileInfo(filepath);
Console.WriteLine(fi.Name);

//input to the "fi" is a full path to the file from "filepath"
//This code will return the fileName from the given path

//output
//example.txt
1 голос
/ 10 января 2018
Namespace: using System.IO;  
 //use this to get file name dynamically 
 string filelocation = Properties.Settings.Default.Filelocation;
//use this to get file name statically 
//string filelocation = @"D:\FileDirectory\";
string[] filesname = Directory.GetFiles(filelocation); //for multiple files

Your path configuration in App.config file if you are going to get file name dynamically  -

    <userSettings>
        <ConsoleApplication13.Properties.Settings>
          <setting name="Filelocation" serializeAs="String">
            <value>D:\\DeleteFileTest</value>
          </setting>
              </ConsoleApplication13.Properties.Settings>
      </userSettings>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...