简体   繁体   中英

How to open a file of different extension with notepad in python

I have a .fhx file that I could open normally with notepad but I want to open it using Python. I have tried subprocess.popen which I got online but I keep getting errors. I also want to be able to read the contents of this file like a normal text file like how we do in f=open("blah.txt", "r") and f.read(). Could anyone guide me in the right direction ?

    import subprocess
    filepath = "C:\Users\Ch\Desktop\FHX\fddd.fhx"
    notePath = r'C:\Windows\System32\notepad.exe'
    subprocess.Popen("%s %s" % (notePath, filepath))

尝试使用shell=True参数subprocess.call(((notePath,filepath),shell = True)

Solved my problem by adding encoding="utf16" to the file open command.

    count = 1
    filename = r'C:\Users\Ch\Desktop\FHX\27-ESDC_CM02-2.fhx'
    f = open(filename, "r", encoding="utf16") #Does not work without encoding
    lines = f.read().splitlines()
    for line in lines:
        if "WIRE SOURCE" in line:
            liner = line.split()
            if any('SOURCE="INPUT' in s for s in liner):
                print(str(count)+") ", "SERIAL INPUT = ", liner[2].replace("DESTINATION=", ""))
            count += 1

Now I'm able to get the data the way I wanted.Thanks everyone.

You should be passing a list of args:

import subprocess
filepath = r"C:\Users\Ch\Desktop\FHX\fddd.fhx"
notePath = r'C:\Windows\System32\notepad.exe'
subprocess.check_call([notePath, filepath])

If you want to read the contents then just open the file using open :

with open(r"C:\Users\Ch\Desktop\FHX\fddd.fhx") as f:
     for line in f:
        print(line)

You need to use raw string for the path also to escape the f n your file path name, if you don't you are going to get errors.

In [1]: "C:\Users\Ch\Desktop\FHX\fddd.fhx"
Out[1]: 'C:\\Users\\Ch\\Desktop\\FHX\x0cddd.fhx'

In [2]: r"C:\Users\Ch\Desktop\FHX\fddd.fhx"
Out[2]: 'C:\\Users\\Ch\\Desktop\\FHX\\fddd.fhx'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM