zoukankan      html  css  js  c++  java
  • Python os.chmod

     os.chmod(path,mode)   这个方法应该很简单,只需要2个参数,一个是路径,一个是说明路径的模式,下面列出了这个用法中可以使用的一些常用的模式:
    
    stat.S_ISUID: Set user ID on execution.                      不常用
    
    stat.S_ISGID: Set group ID on execution.                    不常用
    
    stat.S_ENFMT: Record locking enforced.                                          不常用
    
    stat.S_ISVTX: Save text image after execution.                                在执行之后保存文字和图片
    
    stat.S_IREAD: Read by owner.                                                           对于拥有者读的权限
    
    stat.S_IWRITE: Write by owner.                                                         对于拥有者写的权限
    
    stat.S_IEXEC: Execute by owner.                                                       对于拥有者执行的权限
    
    stat.S_IRWXU: Read, write, and execute by owner.                          对于拥有者读写执行的权限
    
    stat.S_IRUSR: Read by owner.                                                            对于拥有者读的权限
    
    stat.S_IWUSR: Write by owner.                                                          对于拥有者写的权限
    
    stat.S_IXUSR: Execute by owner.                                                       对于拥有者执行的权限
    
    stat.S_IRWXG: Read, write, and execute by group.                           对于同组的人读写执行的权限
    
    stat.S_IRGRP: Read by group.                                                             对于同组读的权限
    
    stat.S_IWGRP: Write by group.                                                           对于同组写的权限
    
    stat.S_IXGRP: Execute by group.                                                        对于同组执行的权限
    
    stat.S_IRWXO: Read, write, and execute by others.                          对于其他组读写执行的权限
    
    stat.S_IROTH: Read by others.                                                           对于其他组读的权限
    
    stat.S_IWOTH: Write by others.                                                         对于其他组写的权限
    
    stat.S_IXOTH: Execute by others.                                                      对于其他组执行的权限
    

      

  • 相关阅读:
    编程实践56
    诫子篇
    编程实践58
    编程实践55
    C#Process类应该声明个什么引用空间啊 找不到类型或命名空间名称“Process”(是否缺少 using 指令或程序集引用?) 如何解决?
    课堂题目54
    jQuery学习笔记jQuery的动画
    Asp.net生成各种网页快捷方式[转贴]
    jQuery学习笔记Helloworld
    FreeTextBox配置
  • 原文地址:https://www.cnblogs.com/gaitian00/p/4034549.html
Copyright © 2011-2022 走看看