-1
作爲一個更好的定義,如何在Python中編寫如下函數?如何使用Python在Ubuntu上創建文件快捷方式?
def create_shortcut(source, dest):
create a shortcut of file 'source' and put it in 'dest'
作爲一個更好的定義,如何在Python中編寫如下函數?如何使用Python在Ubuntu上創建文件快捷方式?
def create_shortcut(source, dest):
create a shortcut of file 'source' and put it in 'dest'
如果 「捷徑」 你的意思是符號鏈接,它只是
import os
os.symlink(source,dest)
完美。非常感謝。 –