Yanıtlar:
Path.GetFileNameWithoutExtension
Yöntem size adından açık olmalı gibi, uzantısı olmadan bir argüman olarak geçmesi dosya adını verir.
Bu amaç çerçevesinde, uzatma haricinde tam yolu koruyacak bir yöntem vardır.
System.IO.Path.ChangeExtension(path, null);
Yalnızca dosya adı gerekiyorsa şunu kullanın:
System.IO.Path.GetFileNameWithoutExtension(path);
null
Burada sihirli değeri vardır. Eğer kullanırsanız String.Empty
aka ""
Eğer bir eğik [sol edilecektir .
] nokta.
GetFileNameWithoutExtension
daha açıktır. Her ne kadar potansiyel olarak istenmeyen yan etkisini ve bundan kaçınmak için bir alternatifin varlığını bilmek güzel olsa da.
Kullanabilirsiniz
string extension = System.IO.Path.GetExtension(filename);
Ve sonra uzantıyı manuel olarak kaldırın:
string result = filename.Substring(0, filename.Length - extension.Length);
String.LastIndexOf çalışır.
string fileName= "abc.123.txt";
int fileExtPos = fileName.LastIndexOf(".");
if (fileExtPos >= 0 )
fileName= fileName.Substring(0, fileExtPos);
foo/bar.cat/cheese
!
String.LastIndexOf
böyle bir şeyi başarmak için tehlikelidir. @Cameron'un yukarıda belirttiği gibi, uzantısı olmayan dosyalar için sonuçlarınız istediğiniz gibi olmayabilir. Bunu yapmanın en güvenli yolu yukarıdaki @ Logman'ın cevabını
Aşağıda, daha az kod kullandım
string fileName = "C:\file.docx";
MessageBox.Show(Path.Combine(Path.GetDirectoryName(fileName),Path.GetFileNameWithoutExtension(fileName)));
Çıktı
C: \ dosya
Path.Combine()
yerine kullanın "\\"
.
Bunun eski bir soru olduğunu ve Path.GetFileNameWithoutExtension
daha iyi ve belki de daha temiz bir seçenek olduğunu biliyorum . Ama şahsen bu iki yöntemi projeme ekledim ve paylaşmak istedim. Bu, aralıkları ve dizinleri kullanması nedeniyle C # 8.0 gerektirir.
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!!!");
}
}
Bu uygulama çalışmalıdır.
string file = "abc.txt";
string fileNoExtension = file.Replace(".txt", "");
abc.txt.pdf
? :-)