From d00f0b9fa75e66251b341ed5fc78fb5b7c543504 Mon Sep 17 00:00:00 2001 From: ed Date: Sun, 5 Mar 2023 20:18:02 +0000 Subject: [PATCH] ftp: support filezilla mkdir --- copyparty/ftpd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copyparty/ftpd.py b/copyparty/ftpd.py index bfb42ea0..3192b8a1 100644 --- a/copyparty/ftpd.py +++ b/copyparty/ftpd.py @@ -218,7 +218,7 @@ class FtpFs(AbstractedFS): def mkdir(self, path: str) -> None: ap = self.rv2a(path, w=True)[0] - bos.mkdir(ap) + bos.makedirs(ap) # filezilla expects this def listdir(self, path: str) -> list[str]: vpath = join(self.cwd, path).lstrip("/")