Quantcast
Channel: 可丁丹尼 @ 一路往前走2.0
Viewing all articles
Browse latest Browse all 79

移除檔案的副檔名

$
0
0
using System;
using System.IO;
public class Example
{
public static void Main()
{
string filepath= @"C:\1234\5678\abc.csv";
// 直接將副檔名給null就會清空
string onlyFileNamePath = Path.ChangeExtension(filepath, null);
Console.WriteLine(filePathWithoutExt);
}
}

The post 移除檔案的副檔名 appeared first on 可丁丹尼 @ 一路往前走2.0.


Viewing all articles
Browse latest Browse all 79

Trending Articles