Sending file to VirusTotal with MVC
问题 I am a student trying out another mini project where the user can upload a CSV file to the web server. But before I can create another program to execute the file, I would like to send the file to virustotal to have it check for virus. I tried but I got an error: "cannot convert from 'string' to 'System.IO.FileInfo'" Here is my codes: Controller using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using VirusTotalNET; namespace Testing_1