Nov 5, 2002 #1 nibsy Well-known member Joined Aug 7, 2002 Messages 51 Location Kent, UK Can anyone tell me how to check if a file exists in a directory?
Nov 5, 2002 #2 T ths Guest Hello There If Dir("C:\windows\win.ini", FileAttribute.Archive) <> "" Then File Exists Else File not Exists End If SKOl Rulezzzzzzzzzzzzz
Hello There If Dir("C:\windows\win.ini", FileAttribute.Archive) <> "" Then File Exists Else File not Exists End If SKOl Rulezzzzzzzzzzzzz
Nov 5, 2002 #3 Divil Well-known member Joined Nov 17, 2002 Messages 2,748 ths: This is the VB.NET forum. Please dont post VB6 answers here. nibsy: System.IO.File.Exists(path)
Nov 5, 2002 #4 E Ed Simon Guest In the System.IO.File import there is a function called Exists withc returns a true if the fiile exists. FullPath is the file you want to check for. BoolVar = System.IO.File.Exists(fullpath) Good Luck Ed
In the System.IO.File import there is a function called Exists withc returns a true if the fiile exists. FullPath is the file you want to check for. BoolVar = System.IO.File.Exists(fullpath) Good Luck Ed
Nov 5, 2002 #5 nibsy Well-known member Joined Aug 7, 2002 Messages 51 Location Kent, UK Thanks Divil / Ed
Nov 6, 2002 #6 T ths Guest Sorry for VB6 answer . . . So How can i do to unload a assembly (.dll ) in VB.NET ?!?! tks
Nov 6, 2002 #7 nibsy Well-known member Joined Aug 7, 2002 Messages 51 Location Kent, UK Probably best to post this question as a new thread, ths.