0

好的,所以我基本上是在编写一个创建文本文件的程序,除了我希望将它们创建在与 .py 文件位于同一文件夹中的文件夹中,这可能吗?我该怎么做?使用 python 3.3

4

2 回答 2

5

要查找脚本所在的目录:

import os

path_to_script = os.path.dirname(os.path.abspath(__file__))

然后你可以使用它作为你的文件名:

my_filename = os.path.join(path_to_script, "my_file.txt")

with open(my_filename, "w") as handle:
    print("Hello world!", file=handle)
于 2013-05-07T23:35:49.880 回答
0

使用open

open("folder_name/myfile.txt","w").close()  #if just want to create an empty file

如果你想创建一个文件然后用它做一些事情,那么最好使用with语句:

with open("folder_name/myfile.txt","w") as f:
    #do something with f
于 2013-05-07T23:31:57.383 回答