指定ファイルパスのフォルダパスを取得する構文は存在しない?

こんにちは。
指定フォルダのファイルパスを取得する
System.IO.Directory.GetFiles(“フォルダパス”)
があるのだから、指定ファイルパスのフォルダパスを取得する
System.IO.Directory.GetFolder(“ファイルパス”)
のような構文があると推測していましたが、今のところ見つかっていません。この認識で正しいですか?

Hi @gorby ,

You can use below code to get folders from a main folder,
System.IO.Directory.GetDirectories(“folderpath”)

To get the folder name of a filepath you can use below code,
System.IO.Path.GetDirectoryName(“filepath”)

Hope this may help you :slight_smile:

4 Likes

こんにちは

System.IO.Path.GetDirectoryName

を使います。

ねえ、これを試して、
Directory.GetFiles(フォルダーパス)
このコードでファイル タイプを指定した場合、そのファイル タイプのみが返されます。
これにより、フォルダー内のすべてのファイルが返されます

よろしく

1 Like

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