Odpowiedzi:
Ta Path.GetFileNameWithoutExtension
metoda podaje plik, który przekazujesz jako argument bez rozszerzenia, co powinno wynikać z nazwy.
W tym celu w ramach jest metoda, która zachowa pełną ścieżkę oprócz rozszerzenia.
System.IO.Path.ChangeExtension(path, null);
Jeśli potrzebna jest tylko nazwa pliku, użyj
System.IO.Path.GetFileNameWithoutExtension(path);
null
Ma tutaj wartość magiczną. Jeśli użyjesz String.Empty
aka ""
, pozostanie ci .
kropka [ ].
GetFileNameWithoutExtension
jest bardziej wyraźny. Chociaż miło jest wiedzieć o jego potencjalnie niepożądanym skutku ubocznym i istnieniu alternatywy, aby go uniknąć.
Możesz użyć
string extension = System.IO.Path.GetExtension(filename);
A następnie ręcznie usuń rozszerzenie:
string result = filename.Substring(0, filename.Length - extension.Length);
String.LastIndexOf będzie działać.
string fileName= "abc.123.txt";
int fileExtPos = fileName.LastIndexOf(".");
if (fileExtPos >= 0 )
fileName= fileName.Substring(0, fileExtPos);
foo/bar.cat/cheese
!
String.LastIndexOf
jest niebezpieczne dla osiągnięcia czegoś takiego. W przypadku plików bez rozszerzenia, jak stwierdzono powyżej w @Cameron, wyniki mogą być inne niż oczekiwane. Najbezpieczniejszym sposobem na to jest użycie powyższej odpowiedzi @ Logman.
Użyłem poniżej, mniej kodu
string fileName = "C:\file.docx";
MessageBox.Show(Path.Combine(Path.GetDirectoryName(fileName),Path.GetFileNameWithoutExtension(fileName)));
Wyjście będzie
C: \ plik
Path.Combine()
zamiast określać "\\"
.
Wiem, że to stare pytanie i Path.GetFileNameWithoutExtension
jest lepszą, a może czystszą opcją. Ale osobiście dodałem te dwie metody do mojego projektu i chciałem się nimi podzielić. Wymaga to C # 8.0, ponieważ wykorzystuje zakresy i indeksy.
public static string RemoveExtension(this string file) => ReplaceExtension(file, null);
public static string ReplaceExtension(this string file, string extension)
{
var split = file.Split('.');
if (string.IsNullOrEmpty(extension))
return string.Join(".", split[..^1]);
split[^1] = extension;
return string.Join(".", split);
}
/// <summary>
/// Get the extension from the given filename
/// </summary>
/// <param name="fileName">the given filename ie:abc.123.txt</param>
/// <returns>the extension ie:txt</returns>
public static string GetFileExtension(this string fileName)
{
string ext = string.Empty;
int fileExtPos = fileName.LastIndexOf(".", StringComparison.Ordinal);
if (fileExtPos >= 0)
ext = fileName.Substring(fileExtPos, fileName.Length - fileExtPos);
return ext;
}
private void btnfilebrowse_Click(object sender, EventArgs e)
{
OpenFileDialog dlg = new OpenFileDialog();
//dlg.ShowDialog();
dlg.Filter = "CSV files (*.csv)|*.csv|XML files (*.xml)|*.xml";
if (dlg.ShowDialog() == DialogResult.OK)
{
string fileName;
fileName = dlg.FileName;
string filecopy;
filecopy = dlg.FileName;
filecopy = Path.GetFileName(filecopy);
string strFilename;
strFilename = filecopy;
strFilename = strFilename.Substring(0, strFilename.LastIndexOf('.'));
//fileName = Path.GetFileName(fileName);
txtfilepath.Text = strFilename;
string filedest = System.IO.Path.GetFullPath(".\\Excels_Read\\'"+txtfilepath.Text+"'.csv");
// filedest = "C:\\Users\\adm\\Documents\\Visual Studio 2010\\Projects\\ConvertFile\\ConvertFile\\Excels_Read";
FileInfo file = new FileInfo(fileName);
file.CopyTo(filedest);
// File.Copy(fileName, filedest,true);
MessageBox.Show("Import Done!!!");
}
}
To wdrożenie powinno działać.
string file = "abc.txt";
string fileNoExtension = file.Replace(".txt", "");
abc.txt.pdf
? :-)