เราเขียนโปรแกรมให้ทำการก็อปปี้ textfile จาก Folder A ไป Forder B บางครั้งก็อปปี้ได้ บางครั้งก็ขึ้น Error ว่า "arithmetic operation resulted in an overflow."
อันนี้จะเป็นลักษณะของข้อมูลที่อยู่ใน Text file ครับ
string filePath = @"D:\A\text1.txt";
FileInfo fi = new FileInfo(filePath);
if (fi.Exists)
{
// move it to the folder
try
{
fi.CopyTo(@"D:\B" + fi.Name, true);
}
catch
{
}
}