用Python目录创建及应用

Python目录是计算机语言常用的语言,可是很多人还是对其不太了解,觉得它的实际应用语言操作太难,其实如果你了解了Python目录的操作技能,你对其就有个更深的了解。你如果感兴趣的话,就看看下面的文章吧!

我们提供的服务有:成都网站设计、成都网站制作、微信公众号开发、网站优化、网站认证、加查ssl等。为千余家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的加查网站制作公司

和普通文件一样,关于Python目录的操作也很容易掌握。首先,列出一个目录的内容:

 
 
 
  1. view plaincopy to clipboardprint?  
  2. import os   
  3. for fileName in os.listdir ( '/' ):   
  4. print fileName   
  5. import os  
  6. for fileName in os.listdir ( '/' ):  
  7.  

print fileName正如你所见,这很简单,用三行代码就可以完成。
创建目录也很简单:

 
 
 
  1. view plaincopy to clipboardprint?  
  2. import os   
  3. for fileName in os.listdir ( '/' ):   
  4. print fileName   
  5. import os  
  6. for fileName in os.listdir ( '/' ):  
  7.  

删除刚才创建的Python目录:也可以创建多级目录:

 
 
 
  1. view plaincopy to clipboardprint?  
  2. import os   
  3. os.makedirs ( 'I/will/show/you/how/deep/the/rabbit/hole/goes' )   
  4. import os  
  5. os.makedirs ( 'I/will/show/you/how/deep/the/rabbit/hole/goes' )  

如果没有在创建的文件夹中添加任何东西,就可以一次性将它们全部删除(即,删除所列的所有空文件夹):

 
 
 
  1. view plaincopy to clipboardprint?  
  2. import os   
  3. os.removedirs( 'I/will/show/you/how/deep/the/rabbit/hole/goes' )   
  4. import os  
  5. os.removedirs ( 'I/will/show/you/how/deep/the/rabbit/hole/goes' )  

当需要对一个特定的文件类型进行操作时,我们可以选择“fnmatch”模块。以下是显示“.txt”文件的内容和“.exe”文件的文件名:

 
 
 
  1. view plaincopy to clipboardprint?  
  2. import fnmatch   
  3. import os   
  4. for fileName in os.listdir ( '/' ):   
  5. if fnmatch.fnmath ( fileName, '*.txt' ):   
  6. print open ( fileName ).read()   
  7. elif fnmatch.fnmatch ( fileName, '*.exe' ):   
  8. print fileName   
  9. import fnmatch  
  10. import os  
  11. for fileName in os.listdir ( '/' ):  
  12. if fnmatch.fnmath ( fileName, '*.txt' ):  
  13. print open ( fileName ).read()  
  14. elif fnmatch.fnmatch ( fileName, '*.exe' ):  
  15. print fileName“*”  

字符可以表示任意长度的字符。如果要匹配一个字符,则使用“?”符号:

 
 
 
  1. view plaincopy to clipboardprint?  
  2. import fnmatch   
  3. import os   
  4. for fileName in os.listdir ( '/' ):   
  5. if fnmatch.fnmatch ( fileName, '?.txt' ):   
  6. print 'Text file.'   
  7. import fnmatch  
  8. import os  
  9. for fileName in os.listdir ( '/' ):  
  10. if fnmatch.fnmatch ( fileName, '?.txt' ):  
  11. print 'Text file.'“fnmatch”  

以上就是对关于Python目录具体操作内容的简介。

【编辑推荐】

  1. Python正则表达式十种相关的匹配方法
  2. Python字符串替换如何才能进行字符的拆分
  3. Python文本乱码发生时的解决方案
  4. Python编程语言总体性能优点评测
  5. Python输入方式具体的三种实现方式

当前题目:用Python目录创建及应用
标题网址:http://www.csdahua.cn/qtweb/news17/114117.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网