Hi team,
I just found this forum regarding uploading of picture..
https://www.syncfusion.com/forums/175566/upload-image-in-grid
My requirement is to upload, copy and replace the current file.
However, there is no Property in FileSelected in Syncfusion.Blazor.Inputs.FileInfo class to get the full path of the source file so I can apply this.
string SourcePath = @"c:\SoureFile.txt"; // this should be derived from FileSelected in Syncfusion.Blazor.Inputs.FileInfo
string DestinationPath = "scripts/Images/Employees/"+Itemcode;
FileInfo fi1 = new FileInfo(Path);
fi1.CopyTo(path2);
Hope could help me on this matter,
Best Regards,
Tyrone