ファイルを削除し、別のファイルを作成して(上書きできるように)、それに書き込むコードがいくつかあります。
My.Computer.FileSystem.DeleteFile("./pass")
File.Create("./pass")
My.Computer.FileSystem.WriteAllText("./pass", MaskedTextBox1.Text, True)
テキストを書くようになると、次のように表示されます。
An unhandled exception of type 'System.IO.IOException' occurred in mscorlib.dll
Additional information: The process cannot access the file '[path]\pass' because it is being used by another process.
これを解決する方法、またはファイルを削除して再度作成せずにファイルを上書きする方法はありますか?