| | FileSystem.Kill vs. File.Delete VB.NET: Howto Add And Delete Files Way to go Alex3410! That saved me a lot of time. I had trouble getting a file to go away. If you use File.Delete(fname) you must make sure another process is not using it. Otherwise you can use FileSystem.Kill(fname) which will just go ahead and delete the file. David |

