python 檔案與目錄操作

來源:互聯網
上載者:User
1)os.path
1.1 os.path.isabs(path) 是否是絕對路徑
1.2 os.path.isfile(path)
1.3 os.path.isdir(path)
1.4 os.path.islink(path) 是否是連結;但如果系統不支援連結,返回False
1.5 os.path.ismount(path) 是否為磁碟機;但是很不幸的是在python 3.0中這是個不能啟動並執行函數。
原函數如下:


# Is a path a mount point? Either a root (with or without drive letter)
# or an UNC path with at most a / or \ after the mount point.

def ismount(path):
"""Test whether a path is a mount point (defined as root of drive)"""
unc, rest = splitunc(path)
seps = _get_bothseps(p)
if unc:
return rest in p[:0] + seps
p = splitdrive(path)[1]
return len(p) == 1 and p[0] in seps




其錯誤之處是顯而易見的。不知道這個函數為什麼這麼寫,在windows平台,可以如下完成該功能
def ismount(path):
p = splitdrive(path)[1]
if len(p) > 0:
return(False)
else:
return(True)


其他平台沒有對應的機器,不知道具體情形。
1.6 os.path.abspath(path) 返回絕對路徑
1.7 os.path.dirname(path)
1.8 os.path.exists(path)
1.9 os.path.lexists(path) 和exists函數一樣
1.10os.path.getsize(path)
1.11os.path.getctime(path) 返回浮點數的系統時間,在類Unix系統上是檔案最近更改的時間,
在Windows上是檔案或目錄的建立時間
1.12os.path.getmtime(path) 檔案或目錄最後更改的時間
1.13os.path.getatime(path) 檔案或目錄最後存取的時間
1.14os.path.samefile(path1,path2) 如果2個路徑指向同樣的檔案或目錄,返回True(Windows上不可用)
1.15os.path.split(path) 分割路徑,如果path是目錄,返回[parentName, dirName];
如果path是檔案,返回[dirName, fileName]
1.16os.path.splitext(path) 分割路徑,如果path是目錄,返回[parentName, ''];
如果path是檔案,返回[dirName+fileName, 檔案尾碼]


2)fileinput
簡單使用
import file
input for line in fileinput.input():
process(line)


2.1 fileinput.input([files[, inplace[, backup[,mode[,openhook]]]]])
建立一個fileinput的執行個體,如果files為空白,則指向控制台獲得輸入;如果file為'-',同樣轉向控制台獲得輸入。
預設情況,檔案以text mode開啟,如果需要其他格式,則需要指定。
2.2 fileinput.filename() #只有當讀入第一行之後,該值才被賦值
2.3 fileinput.fileno()
2.4 fileinput.lineno()
2.5 fileinput.filelineno()
2.6 fileinput.isfirstline()
2.7 fileinput.isstdin()
2.8 fileinput.nextfile()
2.9 fileinput.close()


3)glob
可以使用簡單的方法匹配某個目錄下的所有子目錄或檔案,用法也很簡單。
3.1 glob.glob(regression) 返回一個列表
3.2 glob.iglob(regression) 返回一個遍曆器
這個模組簡單好用,強力推薦。


4)linecache
看名字就知道了,屬於緩衝類的
4.1 linecache.getline(filename,lineno[, module_globals]) #獲得filename的第lineno行
4.2 linecache.clearcache()
4.3 linecache.checkcache([filename]) #檢查更新


5)shutil 重點推薦的襖,好東西,支援檔案集合的複製和刪除操作
5.1 shutil.copyfileobj(fsrc, fdst[, length])
5.2 shutil.copyfile(src, dst) #上面2個都是檔案的複製
5.3 shutil.copymode(src, dst) #除了複製內容,還會複製其他的一些資訊,例如作者
5.4 shutil.copystat(src, dst) #除了複製內容,還會複製存取時間的資訊
5.5 shutil.copy(src, dst) #複製檔案到dst,當dst為目錄時,複製到子目錄
5.6 shutil.copy2(src, dst) #相當於先copy再copystat
5.7 shutil.copytree(src, dst[, symlinks=False[, ingore=None]]) #複製資料夾樹狀目錄,注意,dst檔案夾必須是不存在的
5.8 shutil.rmtree(path[, ignore_erros[, onerror]])
5.9 shutil.move(src,dst)

代碼如下:


def copytree(src, dst, symlinks=False):
names = os.listdir(src)
os.makedirs(dst)
errors = []
for name in names:
srcname = os.path.join(src, name)
dstname = os.path.join(dst, name)
try:
if symlinks and os.path.islink(srcname):
linkto = os.readlink(srcname)
os.symlink(linkto, dstname)
elif os.path.isdir(srcname):
copytree(srcname, dstname, symlinks)
else:
copy2(srcname, dstname)
# XXX What about devices, sockets etc.?
except (IOError, os.error) as why:
errors.append((srcname, dstname, str(why)))
# catch the Error from the recursive copytree so that we can
# continue with other files
except Error as err:
errors.extend(err.args[0])
try:
copystat(src, dst)
except WindowsError:
# can't copy file access times on Windows
pass
except OSError as why:
errors.extend((src, dst, str(why)))
if errors:
raise Error(errors)

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.