This is a book about vb.you could learn this from this book

源代码在线查看: fileexists.aspx

软件大小: 1724 K
上传用户: stuoju
关键词: book this about could
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				
				
								
					if File.Exists("C:\Wrox\Hello.Txt") then
						Response.Write( "C:\Wrox\Hello.Txt file exists")
					else
						Response.Write( "C:\Wrox\Hello.Txt file does not exist")
					end if
				
				
					dim myfile as FileInfo
				
					myfile = new FileInfo("C:\Wrox\Hello.Txt")
				
					if myfile.Exists = true then
						Response.Write( "C:\Wrox\Hello.Txt file exists")
						Response.Write( "Created: " & myfile.CreationTime )
					else
						Response.Write( "C:\Wrox\Hello.Txt file exists does not exist")
					end if
				
				
				
				%>
				
							

相关资源