Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
os.symlink()
Python中的方法用于创建符号链接。此方法创建指向源命名目标的符号链接。
要阅读有关符号链接/软链接的信息,请参阅本文。
用法: os.symlink(src, dst, target_is_directory = False, *, dir_fd = None)
参数:
src:代表文件系统路径的path-like对象。这是将为其创建符号链接的源文件路径。
dst:代表文件系统路径的path-like对象。这是将在其中创建符号链接的目标文件路径。
target_is_directory(可选):此参数的默认值为False。如果指定的目标路径是目录,则其值应为True。
dir_fd(可选):引用目录的文件描述符。
返回类型:此方法不返回任何值。
代码:用于os.symlink()
方法
# Python program to explain os.symlink() method
# importing os module
import os
# Source file path
src = '/home/ihritik/file.txt'
# Destination file path
dst = '/home/ihritik/Desktop/file(symlink).txt'
# Create a symbolic link
# pointing to src named dst
# using os.symlink() method
os.symlink(src, dst)
print("Symbolic link created successfully")
输出:
Symbolic link created successfully
参考: https://docs.python.org/3/library/os.html#os.link
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.symlink() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。