私は次のコードを取得しましたが、これは素晴らしいものですが、名前だけでなくパス全体も返します
For Each s As String In System.IO.Directory.GetFiles("C:\VTS\TREADSTONE LT\ATC\BASIS\")
combobox1.Items.Add(s)
Next
私が求めているのは、ファイル名のみであり、できれば拡張子なしです...
アップデート
For Each s As String In GetFileNameWithoutExtension("C:\VTS\TREADSTONE LT\ATC\BASIS\")
combobox1.Items.Add(s)
Next