■フォルダ内のファイルパスをまとめて取得・戻り値はString[]型
Directory.GetFiles("C:\sample")
■Pathクラスを使用してフォルダ・ファイルパス等を取得します
■主なメソッド
ディレクトリ名の取得
System.IO.Path.GetDirectoryName("C:\sample\sample.xlsx")
拡張子の取得
System.IO.Path.GetExtension("C:\sample\sample.xlsx")
ファイル名の取得
System.IO.Path.GetFileName("C:\sample\sample.xlsx")
ファイル名(拡張子なし)の取得
System.IO.Path.GetFileNameWithoutExtension("C:\sample\sample.xlsx")
ルートディレクトリ名の取得
System.IO.Path.GetPathRoot("C:\sample\sample.xlsx")
※カレントディレクトリは”C:\cd”とする