반응형
public static string ReadFileAsBase64String(string filePath)
{
    if (File.Exists(filePath) == false)
    {
        return null;
    }
 
    return Convert.ToBase64String(File.ReadAllBytes(filePath));
}

 

반응형

+ Recent posts