当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.path.realpath()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是Python中OS模块的子模块,用于通用路径名操作。

os.path.realpath()Python中的方法用于通过消除路径中遇到的任何符号链接来获取指定文件名的规范路径。

用法: os.path.realpath(path)

参数:
path:代表文件系统路径的path-like对象。
path-like对象是表示路径的字符串或字节对象。

返回类型:此方法返回代表规范路径的字符串值。

创建软链接或符号链接
在Unix或Linux中,可以使用ln命令创建软链接或符号链接。下面是在shell提示符下创建符号链接的语法:

$ ln -s {source-filename} {symbolic-filename}

例:

例:
create symbolic link

在上面的输出中,“ /home /ihritik /Desktop /file(shortcut).txt”是一个符号链接。

代码:使用os.path.realpath()方法获取规范路径并解析符号链接

# Python program to explain os.path.realpath() method  
    
# importing os module  
import os 
  
# Path 
path = "/home / ihritik / Desktop / file(shortcut).txt"
  
  
# Get the canonical path 
# of the specified path 
# by eliminating any symbolic links 
# encountered in the path 
real_path = os.path.realpath(path) 
  
# Print the canonical path 
print(real_path) 
  
  
# Path 
path = "/../../GeeksForGeeks / sample.py"
  
  
# Get the canonical path 
# of the specified path 
# eliminating any symbolic links 
# encountered in the path 
real_path = os.path.realpath(path) 
  
# Print the canonical path 
print(real_path) 
  
  
# Path 
path = "file.txt"
  
  
# Get the canonical path 
# of the specified path 
# eliminating any symbolic links 
# encountered in the path 
real_path = os.path.realpath(path) 
  
# Print the canonical path 
print(real_path) 
  
os.chdir("/home / ihritik / Downloads/") 
  
  
# Path 
path = "file.txt"
  
# Get the canonical path 
# of the specified path 
# eliminating any symbolic links 
# encountered in the path 
real_path = os.path.realpath(path) 
  
# Print the canonical path 
print(real_path)
输出:
/home/ihritik/Documents/file(original).txt
/GeeksForGeeks/sample.py
/home/ihritik/file.txt
/home/ihritik/Downloads/file.txt

参考: https://docs.python.org/3/library/os.path.html



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.path.realpath() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。