好的,所以我正在编写一个程序来帮助连接到无线网络。我已经完成了大部分(事实上,它已经完成了。我只是在研究额外的功能。)
我正在为 Arch Linux 操作系统的名为 NetCTL 的无线网络连接后端编写 GUI 前端。基本上,人们可以手动创建配置文件并将其命名为他们想要的任何名称(即“asdfasdfasdf”),但我的总是会生成 $NetworkSSID_wifiz。
但是,每个文件中都会有一行,可以确定它是否用于同一网络。
该行是:
ESSID='$NetworkSSID'
那么我将如何打开出现在 os.listdir 中的每个文件并检查这两个文件是否具有相同的行(同时最好不要产生太多开销。)?
无论是由我的程序还是由用户生成,所有配置文件都保存在 /etc/netctl 中。
示例文件:
用户创建:
Description='A simple WPA encrypted wireless connection'
Interface=wlp2s0
Connection=wireless
Security=wpa
IP=dhcp
ESSID='MomAndKids'
# Prepend hexadecimal keys with \"
# If your key starts with ", write it as '""<key>"'
# See also: the section on special quoting rules in netctl.profile(5)
Key='########'
# Uncomment this if your ssid is hidden
#Hidden=yes
由我的程序创建:
Description='A profile generated by WiFiz for MomAndKids'
Interface=wlp2s0
Connection=wireless
Security=wpa
ESSID='MomAndKids'
Key='#######'
IP=dhcp
示例 os.listdir 输出:
['hooks', 'interfaces', 'examples', 'ddwrt', 'MomAndKids_wifiz', 'backups', 'MomAndKids']