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


Python shutil.copymode()用法及代码示例


Python中的Shutil模块提供了许多对文件和文件集合进行高级操作的函数。它属于Python的标准实用程序模块。该模块有助于自动执行文件和目录的复制和删除过程。

shutil.copymode()Python中的方法用于将权限位从给定的源路径复制到给定的目标路径。的shutil.copymode()方法不会影响文件内容或所有者和组信息。

用法: shutil.copymode(source, destination, *, follow_symlinks = True)

参数:
source:代表源文件路径的字符串。
destination:代表目标文件路径的字符串。
follow_symlinks(可选):此参数的默认值为True。如果为False且source和destination两者都引用了符号链接,则shutil.copymode()方法将尝试修改目标模式(即符号链接)本身而不是其指向的文件。

Note:参数列表中的“ *”表示以下所有参数(此处为“ follow_symlinks”)仅是关键字参数,可以使用其名称(而不是位置参数)来提供。

返回类型:此方法不返回任何值。

代码:使用shutil.copymode()方法将权限位从源路径复制到目标路径
# Python program to explain shutil.copymode() method  
    
# importing os module  
import os 
  
# importing shutil module  
import shutil 
  
  
# Source file path 
src = "/home/ihritik/Desktop/sam3.pl"
  
  
# Destination file path 
dest = "/home/ihritik/Desktop/encry.py"
  
# Print the permission bits  
# of source and destination path 
  
# As we know, st_mode attribute  
# of ‘stat_result’ object returned 
# by os.stat() method is an integer  
# which represents file type and  
# file mode bits (permissions) 
# So, here integere is converted into octal form 
# to get typical octal permissions. 
# Last 3 digit represnts the permission bits 
# and rest digits represents the file type 
print("Before using shutil.copymode() method:") 
print("Permission bits of source:", oct(os.stat(src).st_mode)[-3:]) 
print("Permission bits of destination:", oct(os.stat(dest).st_mode)[-3:]) 
      
  
# Copy the permission bits 
# from source to destination 
shutil.copymode(src, dest) 
  
  
# Print the permission bits  
# of destination path 
print("\nAfter using shutil.copymode() method:") 
print("Permission bits of destination:", oct(os.stat(dest).st_mode)[-3:])
输出:
Before using shutil.copymode() method:
Permission bits of source:664
Permission bits of destination:777

After using shutil.copymode() method:
Permission bits of destination:664

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



相关用法


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