我有一个函数返回数据作为字符串。我想将此字符串数据转换为文件类型数据,而无需实际写入物理文件以作为参数提供给期望它作为配置文件数据的应用程序。如何在python中做到这一点?
我的示例代码片段像-
tokenStr = get_token(some arguments)
#this tokenStr I want to pass to one application which expect this as a file path
os.system('myapplication --tokenFile ' + tokenFilePath)
#这应该是我想要的结果-
os.system('myapplication --tokenFile ' + tokenStr_converted_to_filepath_without_writing_physically_to_file)
有没有办法在python3.
请提供任何可以执行这种转换的代码片段。
感谢您的帮助和建议
你可以使用Path from pathlib,
from pathlib import Path
path = Path(<your string value>)