ray88’s diary
id:ray88
VBA 指定したフォルダ内のファイル名を取得する
■指定したフォルダパスのフォルダ内のファイルを取得し、ファイルパスを配列で返す 呼び出し元プロシージャ Sub TestGetArray() Dim arrayFiles() As String Dim strFolderPath As String Dim i As Integer strFolderPath = "C:\デスクトップ\テスト" arrayFiles = getFileArray(strFolderPath) For i = 0 To UBound(array…