04/11
===
加入雲端檔案
---
- 寫入檔案
with open('/content/drive/MyDrive/___TestData/001_Hello.txt', 'w') as f:
f.write('Hello Google Drive'):
以這段程式碼為基礎寫入到雲端裡的檔案
’/content/drive/MyDrive/___TestData/':
檔案的路徑
001_Hello.txt:
檔名
'w':
檔案寫入
- 讀取檔案
with open('/content/drive/MyDrive/___TestData/001_Hello.txt', 'r') as f:
以這段程式碼為基礎讀取雲端裡的檔案
- 刪除檔案
import os
if os.path.exists("/content/drive/MyDrive/___TestData//001_Hello.txt"):
os.remove("/content/drive/MyDrive/___TestData//001_Hello.txt")
print("檔案已經刪除")
else:
print("檔案不存在"):
以這段程式碼為基礎刪除雲端裡的檔案
期末專題
===
https://colab.research.google.com/drive/1d3eKrr0UmyUADRPHR55NK8BuePHODK4n?usp=sharing
{"metaMigratedAt":"2023-06-16T22:55:09.048Z","metaMigratedFrom":"Content","title":"04/11","breaks":true,"contributors":"[{\"id\":\"9eb337ab-ddc0-4c4a-86ee-32e0ee5a3e6d\",\"add\":641,\"del\":3}]"}