0

我正在尝试通过已经存在的路径目录 C:\ProgramData\myFolder\doc.txt 在 python 中获取路径以打开和写入文本文档,无需创建它,但使其与用户计算机上的 python 可执行文件一起使用。例如,如果我通过这种方式获得文件夹:

   mypath = os.path.join(os.getenv('programdata'), 'myFolder') 

然后如果我想写:

  data = open (r'C:\ProgramData\myFolder\doc.txt', 'w')   

或打开它:

    with open(r'C:\ProgramData\myFolder\doc.txt') as my_file:   

不确定是否正确:

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

   dataPath = os.path.join(programPath, r'C:\ProgramData\myFolder\doc.txt')

并使用它例如:

   with open(dataPath) as my_file:  
4

3 回答 3

0
import os
path = os.environ['HOMEPATH']
于 2016-12-07T03:38:28.887 回答
0

我会首先找出一个放置文件的标准位置。在 Windows 上,USERPROFILE 环境变量是一个好的开始,而在 Linux/Mac 机器上,您可以依赖 HOME。

from sys import platform
import os
if platform.startswith('linux') or platform == 'darwin': 
    # linux or mac
    user_profile = os.environ['HOME']
elif platform == 'win32': 
    # windows
    user_profile = os.environ['USERPROFILE']
else:
    user_profile = os.path.abspath(os.path.dirname(__file__))
filename = os.path.join(user_profile, 'doc.txt')
with open(filename, 'w') as f:
    # opening with the 'w' (write) option will create
    # the file if it does not already exists
    f.write('whatever you need to change about this file')
于 2016-12-07T04:23:01.853 回答
0

对于 Python 3.x,我们可以

import shutil
shutil.which("python")

实际上,shutil.which可以找到任何可执行文件,而不仅仅是python.

于 2020-05-27T08:25:12.853 回答