TOP

[ASP.NET] System.IO.File(判斷檔案是否存在、刪除、覆製、覆蓋)

判斷檔案是否存在
If (System.IO.File.Exists("C:\1.txt")) Then

End if

刪除C:\1.txt
System.IO.File.Delete("C:\1.txt")

覆製檔案,如果有相同檔名直接覆蓋
System.IO.File.Copy("D:\1.txt", "C:\1.txt", True)

0 意見:

張貼留言