简体   繁体   中英

codecs.open create txt file in specific path Python

i have this code but it saves the files in the same path of .py file, how can i do to create txt files in specific folder?

f = codecs.open("gabili" + '.txt', mode="w", encoding="utf-16")
reload(sys)  
sys.setdefaultencoding('utf8')
f.write(u"[HELLO] *ASDASD* /(&) \n")

The codecs.open fonction takes a filename parameter. This filename can be a file name or a full path. So, you can use "/full/path/to/gabili.txt" .

To build a full path, you can use os.path package, like this.

import os

fullpath = os.path.join("/full", "path", "to", "gabili.txt)

Then use it in codecs.open parameters:

with codecs.open(fullpath, mode="w", encoding="utf-16") as f:
    f.write(u"[HELLO] *ASDASD* /(&) \n")

NOTE1: the recommanded way to open a file is by using a with statement

NOTE2: to be portable Py2/Py3, you should use io.open instead of codecs.open

import io

with io.open(fullpath, mode="w", encoding="utf-16") as f:
    f.write(u"[HELLO] *ASDASD* /(&) \n")

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