This shows you the differences between two versions of the page.
blog:2025-04-23-003 [2025/04/23 14:15] jethro created |
blog:2025-04-23-003 [2025/04/23 14:17] (current) jethro [2025-04-23 c# file save overwrite] |
||
---|---|---|---|
Line 1: | Line 1: | ||
~~NOTOC~~ | ~~NOTOC~~ | ||
- | ====== 2025-04-23 c# file save overwrite ====== | + | ====== 2025-04-23 C# file save overwrite ====== |
* 在 C# 中,如果你想保存檔案並覆蓋已存在的檔案,可以使用 System.IO 命名空間中的 File.WriteAllText 或 File.WriteAllBytes 等方法,並確保不檢查檔案是否存在,或者使用 FileStream 搭配適當的 FileMode 來覆蓋檔案。以下是幾種常見的方法: | * 在 C# 中,如果你想保存檔案並覆蓋已存在的檔案,可以使用 System.IO 命名空間中的 File.WriteAllText 或 File.WriteAllBytes 等方法,並確保不檢查檔案是否存在,或者使用 FileStream 搭配適當的 FileMode 來覆蓋檔案。以下是幾種常見的方法: | ||
===== 方法 1:使用 File.WriteAllText 覆蓋檔案 ===== | ===== 方法 1:使用 File.WriteAllText 覆蓋檔案 ===== |