質問するログイン新規登録

質問編集履歴

1

加筆修正

2020/03/19 12:23

投稿

teefpc
teefpc

スコア112

title CHANGED
File without changes
body CHANGED
@@ -1,7 +1,14 @@
1
1
  Google Colab でシンボリックリンクを作成したいのですが、
2
+
3
+ ```python
4
+ from google import drive
5
+ drive.mount('gdrive')
6
+ ```
7
+
2
8
  ```sh
9
+ !cd /content/gdrive/My Drive/
3
10
  !mkdir dir1
4
- !touch t1/a.txt
11
+ !touch dir1/a.txt
5
12
  !ln -s dir1 dir2
6
13
  ln: failed to create symbolic link 'dir2': Operation not supported
7
14
  ```