这似乎微不足道,但我无法使用 pathlib 的 Path() 创建路径。
首先,我通过配置文件收集用户输入他们想要输出目录的位置。
然后我用文件路径创建一个实例变量:
import time
from pathlib import Path
class MyStuff():
def __init__(self,
output_file):
self.output_file = output_file
## Setup logging ###
today = time.strftime("%Y%m%d")
now = time.strftime("%Y%d%m_%H:%M:%S")
today_file = "{}_ShortStack.log".format(today)
接下来我尝试使用今天的日期创建日志文件。我尝试了以下方法:
log_file = Path("{}{}".format(self.log_path, today_file))
log_file = Path(self.log_path / today_file)
log_file = Path(self.log_path.joinpath(Path(today_file)))
如果有人进入:
output_dir =./
在他们的配置文件中,无论我尝试什么,pathlib 都会在其周围加上引号,如下所示:
"./"20181221_ShortStack.log
我也尝试过先这样做,看看是否有帮助。它没。
self.output_file = Path(output_file)