Dev2.FileSystem.Delete C# (CSharp) Method

Delete() public method

public Delete ( Uri path, string userName = "", string password = "" ) : void
path System.Uri
userName string
password string
return void
        public void Delete(Uri path, string userName = "", string password = "")
        {
            File.Delete(path.LocalPath);
        }