NX Journal ローカルにフォルダがあるか確認

2019/12/07 categories:NX Journal| tags:NX Journal|VB|

ローカルにフォルダがあるか判定し、フォルダが存在しなければフォルダを作成するプログラムを作成しました。

VBコード

Imports System
Imports NXOpen

Module NXJournal
    Sub Main (ByVal args() As String) 

        If !System.IO.Directory.Exists("D:\TestDirectory") Then
            System.IO.Directory.CreateDirectory("D:\testDirectory")
        End if

    End Sub

End Module

Share post

Related Posts

コメント