【发布时间】:2023-02-22 12:18:16
【问题描述】:
我已经开始使用 Google Colab 笔记本,但我仍然不知道如何更改笔记本的保存位置。我可以更改工作目录并将文件保存到我的 Google Drive 中的一个文件夹中,但实际的笔记本总是保存在一个名为 Colab Note 的文件夹中。这是我用来更改工作目录的代码。
from google.colab import drive
drive.mount('/content/drive', force_remount=True)
import os
# Set your working directory to a folder in your Google Drive. This way, if your notebook times out,
# your files will be saved in your Google Drive!
# the base Google Drive directory
root_dir = "/content/drive/My Drive/"
# choose where you want your project files to be saved
project_folder = "Colab_Directory_Testing/"
def create_and_set_working_directory(project_folder):
# check if your project folder exists. if not, it will be created.
if os.path.isdir(root_dir + project_folder) == False:
os.mkdir(root_dir + project_folder)
print(root_dir + project_folder + ' did not exist but was created.')
# change the OS to use your project folder as the working directory
os.chdir(root_dir + project_folder)
# create a test file to make sure it shows up in the right place
!touch 'new_file_in_working_directory.txt'
print('\nYour working directory was changed to ' + root_dir + project_folder + \
"\n\nAn empty text file was created there. You can also run !pwd to confirm the current working directory." )
create_and_set_working_directory(project_folder)
但是当我保存笔记本时,它不会保存在工作目录中。任何想法如何让它保存在那里?
【问题讨论】: