zoukankan      html  css  js  c++  java
  • 资源:Python for Windows

    http://win32com.goermezer.de/content/blogsection/7/284/

    一个网站,有各种Windows 下使用 Python 的脚本示例,很不错,有待继续挖掘。

    举一个例子:

    https://win32com.goermezer.de/content/view/287/285/

     
    import win32com.client
    # look in the makepy output for IE for the 'CLSIDToClassMap'
    # dictionary, and find the entry for 'ShellWindows'
    clsid='{9BA05972-F6A8-11CF-A442-00A0C90A8F39}'
    ShellWindows=win32com.client.Dispatch(clsid)
     
    # a busy state can be detected:
    # while ShellWindows[0].Busy == False:
    # go in for-loop here
     
    for i in range(ShellWindows.Count):
        print ShellWindows[i].LocationURL
        for j in range(ShellWindows[i].Document.SelectedItems().Count):
            print '  ', ShellWindows[i].Document.SelectedItems().Item(j).Path
     
    # Be careful: Internet Explorer uses also the same CLSID. You should implement a detection!

    这段代码获取当前打开Windows Explorer窗口的名字,以及选中的文件,是不是有种黑科技的感觉呀!

  • 相关阅读:
    elk 分布式数据同步
    mget 同时获取
    Jzoj1460 无题noname
    Jzoj1460 无题noname
    Jzoj1322硬币
    Jzoj1322硬币
    Jzoj1321 灯
    Jzoj1321 灯
    Jzoj1310 生日礼物
    Jzoj1310 生日礼物
  • 原文地址:https://www.cnblogs.com/wrajj/p/5977330.html
Copyright © 2011-2022 走看看