使用Python自動化Windows介面操作

來源:互聯網
上載者:User

要拷貝幾百個檔案到另一個目錄,有重名現象,但是不想覆蓋原有檔案,在命令列下應該可以通過命令列開關來完成需求。

http://sunxiunan.com/?p=1737

但是已經開始拷貝,而且就想使用介面操作,怎麼辦?(太糾結了!)

好在我們有Python可以使用。

http://www.tizmoi.net/watsup/intro.html

http://www.brunningonline.net/simon/blog/archives/winGuiAuto.py.html

其主要設計思想就是使用Windows API找到特定視窗,然後發送鍵盤或者滑鼠訊息。

watsup我使用Python2.6,然後安裝了PyWin32,還有SendKeys庫,最後下載watsup,解壓到Python的lib目錄即可。

代碼極為簡單,我對winGuiAuto稍作修改,加了equalText參數,因為原來的wantedText使用的是(wantedTextintargetWindows),只要有"No"在字串裡面就會返回,與我想達到的效果不太一樣,當然也可以用selectionFunction加lambda完成,但不想費那勁了。

 from watsup.winGuiAuto import findControl, findTopWindow, clickButton
 from time import sleep   
 aWindow = findTopWindow(wantedText='Confirm File Replace')
 while aWindow:
    button = findControl(aWindow, equalText='No')
    sleep(0.1)
    clickButton(button)
    sleep(1)
    aWindow = findTopWindow(wantedText='Confirm File Replace')

如果你使用Ruby,可以參考這篇,也是一樣的使用相關Windows API。

http://rubyonwindows.blogspot.com/2007/05/automating-applications-with-ruby.html

相關文章

聯繫我們

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