■37858 / inTopicNo.3) |
Re[2]: フォルダ内に存在するファイルの配列化する方法 |
□投稿者/ とりの (1回)-(2009/07/02(Thu) 09:42:12)
|
http://jeanne.wankuma.com/tips/vb.net/directory/getfiles.html
より
' 必要な変数を宣言する Dim stPrompt As String = String.Empty
' 拡張子が .txt のファイルを列挙する For Each stFilePath As String In System.IO.Directory.GetFiles("C:\Hoge\", "*.txt") stPrompt &= stFilePath & System.Environment.NewLine Next stFilePath
' 取得したすべてのファイルパスを表示する MessageBox.Show(stPrompt)
|
|