如何使用Python在Ubuntu上创建文件快捷方式?

时间:2014-03-24 22:52:13

标签: python linux ubuntu shortcut

作为一个更好的定义,如何在Python中编写以下函数?

def create_shortcut(source, dest):
    create a shortcut of file 'source' and put it in 'dest'

1 个答案:

答案 0 :(得分:3)

如果通过"捷径"你的意思是符号链接,它只是

import os

os.symlink(source,dest)