Friday, July 17, 2009

VB 6.0 code for checking file existing in a folder

Firstly add Reference Microsoft Scripting Runtime

Dim fso As New FileSystemObject

If fso.FileExists(App.Path & "\Excel Files\Default.xls") = False Then

Else

EndIf

No comments:

Using Authorization with Swagger in ASP.NET Core

 Create Solution like below LoginModel.cs using System.ComponentModel.DataAnnotations; namespace UsingAuthorizationWithSwagger.Models {     ...