歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Python poll實現異步IO

在python中對文件及目錄的操作一般涉及多os模塊,os.path模塊。具體函數以及使用方法在程序中說明。

  1. #!/usr/bin/env python
  2. #-*- coding=UTF8 -*-

  3. import os

  4. import os.path as op

  5. def change_dir():
  6.     '''
  7.   該函數顯示及改變前目錄
  8. using chdir() to change current dir
  9.         getcwd() can show the current working directory
  10.     '''
  11.     directory="/tmp"
  12.     #使用getcwd()返回當前目錄
  13.     print os.getcwd()
  14.     #chdir改變當前目錄為:directory目錄
  15.     os.chdir(directory)
  16.     print os.getcwd()
  17.     
  18. def show_filesOfdir(whichDir):
  19.     '''
  20. 此函數只顯示目錄下的所有文件
  21.  using listdir() to shows all of the file execpt directory
  22.       join() function catenate 'whichDir' with listdir() returns values
  23.      isfile() check that file is a regular file
  24.      '''    
  25.      #listdir() 函數顯示前目錄的內容
  26.     for file in os.listdir(whichDir):
  27. #利用join()把whichDir目錄及listdir() 返回值連接起來組成合法路徑
  28.         file_name = op.join(whichDir,file)
  29. #isfile()函數可以判斷該路徑上的文件是否為一個普通文件
  30.         if op.isfile(file_name):
  31.             print file_name


  32. def printaccess(path):
  33.     ''' 
  34. 顯示文件的最後訪問時間,修改時間
  35. shows 'path' the last access time
  36.             getatime() return the time of last access of path
  37.      stat() return information of a file,use its st_atime return the time of last access
  38.      ctime() return a string of local time
  39.     '''
  40.     import time
  41.     #利用ctime()函數返回最後訪問時間
  42.     #getatime()函數返回最後訪問時間,不過是以秒為單位(從新紀元起計算)
  43.     print time.ctime(op.getatime(path))
  44.     #stat()函數返回一個對象包含文件的信息
  45.     stat = os.stat(path)
  46.     #st_atime 最後一次訪問的時間
  47.     print time.ctime(stat.st_atime)

  48.     print the modify time
  49.     print "modify time is:",
  50.     print time.ctime(op.getctime(path))
  51.     print "modify time is:",
  52.     #st_ctime 最後一次修改的時間
  53.     print time.ctime(stat.st_ctime)

  54. def isDIR(path):
  55.     '''
  56. 一個os.path.isdir()函數的實現
  57.  Implement isdir() function by myself
  58.     
  59.     '''
  60.     import stat

  61.     MODE = os.stat(path).st_mode
  62.     #返回真假值
  63.     return stat.S_ISDIR(MODE)
  64.     
  65.     
  66. if __name__== "__main__":
  67.     
  68.     change_dir()

  69.     show_filesOfdir('''/root''')

  70.     printaccess('/etc/passwd')
  71.     print isDIR('/etc')
Copyright © Linux教程網 All Rights Reserved