python 命令列處理

來源:互聯網
上載者:User

python 命令列處理

# coding=utf-8'''Lovely Python -3 PyDay      PyCDC v0.3     @see:http:##www.woodpecker.org.cn#diveintopython#scripts_and_streams#command_line_arguments.html '''import os,sysimport getopt       #匯入getopt模組CDROM = '#media#cdrom0'def cdWalker(cdrom,cdcfile):    export = ""    for root, dirs, files in os.walk(cdrom):       export+="\n %s;%s;%s" % (root,dirs,files)   ###這裡的+=其實沒有用join方法的效率高       open(cdcfile, 'w').write(export)                ###open加上'w'有建立的效果def usage():   print '''PyCDC 使用方式:       python cdays-3-exercise-1.py -d cdc -k 中國火       #搜尋 cdc 目錄中的光碟片資訊,尋找有“中國火”字樣的檔案或是目錄,在哪張光碟片中           '''try:   opts, args = getopt.getopt(sys.argv[1:], 'hd:e:k:') ###只有h後不加:,因為其後沒其他參數except getopt.GetoptError:   usage()   sys.exit()if len(opts) == 0:   usage()   sys.exit()c_path = ''for opt, arg in opts:  ###arg由這個opts中讀取出來,不明白上面的args有什麼用處   if opt in ('-h', '--help'):      usage()      sys.exit()   elif opt == '-e':           #判別sys.argv[2]中是否有目錄,以便進行自動建立           #cdWalker(CDROM, arg)      print "記錄光碟片資訊到 %s" % arg   elif opt == '-d':      c_path = arg   elif opt == '-k':      if not c_path: ###當c_path為'',即未被賦值時會進入下面的命令        usage()        sys.exit()           #進行檔案搜尋

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.