質問編集履歴
1
加筆修正
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
|
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
|
```
|