取得ファイルを数える方法

こんにちは、いつも助けていただいています。

Directory.GetFiles(FolderPath)で取得したファイルの数をカウントしたいのですが、その方法を教えていただきたいです。
その際Int型にしたいのですがその場合はまた代入が必要になってくるのでしょうか?それともカウントした時点でInt型になっているのでしょうか?

よろしくお願いします。

こんにちは

arrayString = Directory.GetFiles(FolderPath)

とすると

intCount = arrayString.Length

となります。
arrayStringはString配列、intCountはInt32型です。

できました!
いつもありがとうございます。おかげで解決しました!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.