PyQT QFileDialog - 获取包括磁盘IP的完整目录

时间:2016-08-21 21:37:52

标签: python pyqt pyqt4 qfiledialog

我想获得我的目录的完整路径,例如:

//192.168.1.23/D/test/test/aaaa/

//192.168.1.23/D:/test/test/aaaa/

如何让QFileDialog为我提供我选择的硬盘的IP地址?

目前正在使用

self.project= str(QtGui.QFileDialog.getExistingDirectory(self,  "Select Directory", lastDir))

尝试通过os.path.dirname(self.project),但这只是D:\

谢谢!

2 个答案:

答案 0 :(得分:1)

使用QFileDialog直接在PyQt中你不能做什么你可以做的是用另一种方法获取你机器的ip地址,然后用文件路径连接它,就像这样。 QFileDialog不是网络感知'

import socket
def get_ip_addr():
    s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
    s.connect(("8.8.8.8", 80))
    return s.getsockname()[0]

ip = get_ip_addr()

path = self.project= str(QtGui.QFileDialog.getExistingDirectory(self,  "Select Directory", lastDir))

file_path = '//{}/{}'.format(ip, path) # or what ever formatting suits you

如果您对计算机上的其他地址感兴趣,也可以查看QNetworkInterface http://pyqt.sourceforge.net/Docs/PyQt4/qnetworkinterface.html#interfaceFromName,但上面的示例只返回用于路由到{{的IP地址。 1}}

答案 1 :(得分:0)

不确定我在哪里找到它,但这是我最后遵循的选项。我让用户决定使用哪个设备进行位置

from netifaces import interfaces, ifaddresses, AF_INET
p =[]
for ifaceName in interfaces():
    addresses = [i['addr'] for i in ifaddresses(ifaceName).setdefault(AF_INET, [{'addr':'No IP addr'}] )]
    p.append(ifaceName.join(addresses))   

print p[0],p[1]
print p