// Save file name
public static bool FileSaved(string fileName, string inputString)
{
try
{
System.IO.File.AppendAllText(fileName, inputString);
return true;
}
catch (Exception ex)
{
_errorMessage = ex.ToString();
return false;
}
}
沒有留言:
張貼留言