tôi đang cố chạy đoạn mã sau trên google colab nhập mô tả hình ảnh ở đây
dir_path = 'ổ đĩa / Ổ đĩa của tôi / Máy tính xách tay Colab'
log_loss_path = os.path.join (dir_path, 'log_loss.txt')nếu không os.path.isfile (log_loss_path):
os.mknod(log_loss_path)
nhưng tôi nhận được lỗi [Errno 38] Chức năng không được thực hiện
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
bất cứ ai có thể giúp để giải quyết nó?