pathlib.Pathにて、ディレクトリ/ファイルを作ろうとすると、エラーが出てしまいます。
間違いなど、どうぞ、ご指摘くださいませ。
python
1import pathlib 2p_new_file = pathlib.Path('temp/new_file.txt') 3p_new_file.touch()
◎エラー
FileNotFoundError Traceback (most recent call last)
<ipython-input-8-aeddf30d3ef0> in <module>
----> 1 p_new_file.touch()
/Applications/anaconda3/lib/python3.6/pathlib.py in touch(self, mode, exist_ok)
1236 if not exist_ok:
1237 flags |= os.O_EXCL
-> 1238 fd = self._raw_open(flags, mode)
1239 os.close(fd)
1240
/Applications/anaconda3/lib/python3.6/pathlib.py in _raw_open(self, flags, mode)
1044 if self._closed:
1045 self._raise_closed()
-> 1046 return self._accessor.open(self, flags, mode)
1047
1048 # Public API
/Applications/anaconda3/lib/python3.6/pathlib.py in wrapped(pathobj, *args)
385 @functools.wraps(strfunc)
386 def wrapped(pathobj, *args):
--> 387 return strfunc(str(pathobj), *args)
388 return staticmethod(wrapped)
389
FileNotFoundError: [Errno 2] No such file or directory: 'temp/new_file.txt'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/24 04:18