描述
方法symlink()创建符号链接dst指向src。
用法
以下是语法symlink()方法 -
os.symlink(src, dst)
参数
src- 这是来源。
dest- 这是以前不存在的目的地。
返回值
此方法不返回任何值。
示例
下面的例子展示了 symlink() 方法的用法。
#!/usr/bin/python3
import os
src = '/usr/bin/python3'
dst = '/tmp/python'
# This creates a symbolic link on python in tmp directory
os.symlink(src, dst)
print ("symlink created")
结果
让我们编译并运行上面的程序,这将在 /tmp 目录中创建一个符号链接,如下所示 -
lrwxrwxrwx. 1 root root 15 Apr 30 03:00 python -> /usr/bin/python3
相关用法
- Python 3 os.statvfs()用法及代码示例
- Python 3 os.stat()用法及代码示例
- Python 3 os.stat_float_times()用法及代码示例
- Python 3 os.fstatvfs()用法及代码示例
- Python 3 os.minor()用法及代码示例
- Python 3 os.close()用法及代码示例
- Python 3 os.unlink()用法及代码示例
- Python 3 os.major()用法及代码示例
- Python 3 os.rmdir()用法及代码示例
- Python 3 os.fdopen()用法及代码示例
- Python 3 os.fdatasync()用法及代码示例
- Python 3 os.isatty()用法及代码示例
- Python 3 os.rename()用法及代码示例
- Python 3 os.walk()用法及代码示例
- Python 3 os.renames()用法及代码示例
- Python 3 os.makedirs()用法及代码示例
- Python 3 os.utime()用法及代码示例
- Python 3 os.tcgetpgrp()用法及代码示例
- Python 3 os.lchown()用法及代码示例
- Python 3 os.mknod()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - os.symlink() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。