我正在尝试在 google colab 上运行以下代码。
dir_path = '/content/drive/My Drive/Colab Notebooks'
log_loss_path =os.path.join(dir_path, 'log_loss.txt')
if not os.path.isfile(log_loss_path):
os.mknod(log_loss_path)
但我收到错误[Errno 38] 功能未实现
OSError Traceback (most recent call last)
<ipython-input-15-bd3880e6bb8b> in <module>()
2 log_loss_path = os.path.join(dir_path, 'log_loss.txt')
3 if not os.path.isfile(log_loss_path):
----> 4 os.mknod(log_loss_path)
OSError: [Errno 38] Function not implemented
任何人都可以帮助解决它吗?