Back to Top

プログラムの覚書

Category: フォルダ

VB.NET フォルダを作成する

フォルダの作成する方法を記載します。

Directory.CreateDirectory メソッドを使用する方法

Dim sPath As String = "c:\work\aaa\bbb"		

System.IO.Directory.CreateDirectory(sPath)

・既にフォルダが存在していてもエラーになりません。

 

FileSystem.CreateDirectory メソッドを使用する方法

Dim sPath As String = "c:\work\aaa\bbb"

My.Computer.FileSystem.CreateDirectory(sPath)

・既にフォルダが存在していてもエラーになりません。

 

DirectoryInfo クラスを使用する方法

Dim sPath As String = "c:\work\aaa"

Dim finfo As New System.IO.DirectoryInfo(sPath)
finfo.CreateSubdirectory("bbb")

・既にフォルダが存在していてもエラーになりません。
・CreateSubdirectory(“”) パラメータが空白だとエラーになる

 

VB.NET フォルダの存在を確認する

既にフォルダが存在しているか、確認する方法を記載します。

Directory.Exists メソッドを使用する方法

Dim sPath As String = "c:\work"		

If System.IO.Directory.Exists(sPath) Then
    MessageBox.Show("存在します")
Else
    MessageBox.Show("存在しません")
End If

 

FileSystem.DirectoryExists メソッドを使用する方法

Dim sFilePath As String = "C:\work"

If My.Computer.FileSystem.DirectoryExists(sFilePath) Then
    MessageBox.Show("存在します")
Else
    MessageBox.Show("存在しません")
End If

 

DirectoryInfo クラスを使用する方法

Dim sFilePath As String = "C:\work"

Dim finfo As New System.IO.DirectoryInfo(sFilePath)
If finfo.Exists() Then
    MessageBox.Show("存在します")
Else
    MessageBox.Show("存在しません")
End If