0

私が間違っているのかわかりません。アプリに画像を保存するフォルダーを作成したいと考えています。

これは私が使用しようとしているコードです。

    If (Not System.IO.Directory.Exists(Application.StartupPath \ "quilt_images")) Then
        System.IO.Directory.CreateDirectory(Application.StartupPath \ "quilt_images")
    End If

エラーが発生しています

System.InvalidCastException は処理されませんでした HResult=-2147467262 Message=文字列 "C:\Users\DaD\Documents\Visual St" から型 'Long' への変換は無効です。

4

1 に答える 1

1

この行で:

If (Not System.IO.Directory.Exists(Application.StartupPath \ "quilt_images")) Then

文字列を連結するのではなく、分割しています。

于 2013-06-19T06:50:29.023 に答える