From f40c3e11aa88d437c071fb5c192e44b25c36660e Mon Sep 17 00:00:00 2001 From: nbwzlyd <420907013@qq.com> Date: Sun, 11 Sep 2022 09:59:06 +0000 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20'=E8=AF=BB=E5=8F=96?= =?UTF-8?q?=E5=AD=98=E5=82=A8=E4=B8=AD=E6=96=87=E4=BB=B61.py'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 读取存储中文件1.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 读取存储中文件1.py diff --git a/读取存储中文件1.py b/读取存储中文件1.py deleted file mode 100644 index 941721d..0000000 --- a/读取存储中文件1.py +++ /dev/null @@ -1,18 +0,0 @@ -import os - -''' -This hacks the python built-in function "open" which add some pre-processing for file operations -to allows the program runs locally and in the Agit environment without modifications. -''' -if 'CLOUD_PROVIDER' in os.environ and os.environ['CLOUD_PROVIDER'] == 'Agit': - from agit import open # override the open function - dataset_path = 'agit://' # data path in the Agit cloud environment -else: - dataset_path = './dataset/' # data path for local running - -''' -Agit Datasets only allow read-only mode, the default mode "r" (open for reading text, synonym of "rt") -and "rb " (open for reading binary) are available. -''' -with open(dataset_path + 'datafile.txt', mode='rb', encoding=None) as file: - print(file.read()) \ No newline at end of file