码迷,mamicode.com
首页 > 编程语言 > 详细

python之获取文件夹下文件的绝对路径

时间:2017-07-15 13:54:46      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:listdir   append   imp   文件的   文件   class   dir   获取   port   

#!/usr/bin/python
#-*-conding:utf-8-*-
#获取目录下文件的绝对路径
import os

def getabsroute(path):
    listdir = os.listdir(path)
    filepath = os.getcwd()
    allfile = []
    for file in listdir:
        allfile.append(filepath + ‘\\‘ + file)
    print(allfile)

getabsroute(‘E:\\java‘)

 

python之获取文件夹下文件的绝对路径

标签:listdir   append   imp   文件的   文件   class   dir   获取   port   

原文地址:http://www.cnblogs.com/evablogs/p/7096364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!