Home Backend Development Python Tutorial python切换hosts文件代码示例

python切换hosts文件代码示例

Jun 16, 2016 am 08:45 AM
hosts file

win7以上需要使用管理员权限操作。

复制代码 代码如下:

# -*- coding: utf-8 -*-
import os
import glob
import shutil

def format_file_list(files):
        all_files_str = ""
        for i in range(len(files)):
                all_files_str +=  str(i)+":"+files[i]+"\n"
        return all_files_str

hosts_path = "C:\\Windows\\System32\\drivers\\etc"
files =  os.listdir(hosts_path)
os.chdir(hosts_path)

if os.getcwd() != hosts_path:
        print("Switch Dir to System32 Error,check permission!\npwd:"+os.getcwd())
        exit()

hosts_files = glob.glob("host*")
choosed_file_idx = int(input("Choose Hosts File Index:\n"+format_file_list(hosts_files)))
files_num = len(hosts_files)

if (choosed_file_idx = files_num) :
        print("Please choose a file in the lists!")
        exit()

print("Choosed idx:{0},file:{1}.".format(choosed_file_idx,hosts_files[choosed_file_idx]))
shutil.copy("hosts","hosts.bak")
shutil.copy(hosts_files[choosed_file_idx],"hosts")
print("Copy ok,then flush dns...")
os.system("ipconfig /flushdns")

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The hosts file cannot be saved after being modified. The hosts file cannot be saved after being modified. Feb 20, 2024 am 08:14 AM

The hosts file cannot be saved after being modified.

Go Language Programming Guide: Implementation of Modifying Hosts File Go Language Programming Guide: Implementation of Modifying Hosts File Mar 07, 2024 am 10:51 AM

Go Language Programming Guide: Implementation of Modifying Hosts File

No permission to modify hosts file No permission to modify hosts file Mar 03, 2024 am 10:31 AM

No permission to modify hosts file

What should I do if win10 cannot find the hosts file? What should I do if win10 cannot find the hosts file? Mar 01, 2024 pm 09:26 PM

What should I do if win10 cannot find the hosts file?

How to configure the HOSTS file How to configure the HOSTS file Jan 09, 2024 pm 03:41 PM

How to configure the HOSTS file

How to open hosts file How to open hosts file Nov 06, 2023 am 10:27 AM

How to open hosts file

How to modify the hosts file in win10 system How to modify the hosts file in win10 system Mar 27, 2024 am 11:11 AM

How to modify the hosts file in win10 system

What should I do if the hosts file in Win8 system cannot be modified? What should I do if the hosts file in Win8 system cannot be modified? Jun 29, 2023 pm 12:34 PM

What should I do if the hosts file in Win8 system cannot be modified?

See all articles