标签: python linux ubuntu shortcut
作为一个更好的定义,如何在Python中编写以下函数?
def create_shortcut(source, dest): create a shortcut of file 'source' and put it in 'dest'
答案 0 :(得分:3)
如果通过"捷径"你的意思是符号链接,它只是
import os os.symlink(source,dest)