Merge d3dd408c02c6e578289bb43a3fafc77023d4dbd1 into 1b970516f5d3bc0fde96608989c97db26459371d

This commit is contained in:
lazywhite 2024-10-02 20:53:18 -04:00 committed by GitHub
commit 4f669d5d39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

35
ftp.go
View File

@ -1071,6 +1071,41 @@ func (c *ServerConn) MakeDir(path string) error {
return err return err
} }
// MakeDirRecur create a folder recursively using
// MakeDir and ChangeDir
func (c *ServerConn) MakeDirRecur(folder string) error {
// save current dir path
currentDir, err := c.CurrentDir()
if err != nil {
return err
}
dirs := strings.Split(folder, "/")
for _, dir := range dirs {
if dir == "" {
continue
}
// check if dir exists
err := c.ChangeDir(dir)
if err == nil {
continue
}
err = c.MakeDir(dir)
if err != nil {
return err
}
err = c.ChangeDir(dir)
if err != nil {
return err
}
}
// move to origin dir
err = c.ChangeDir(currentDir)
if err != nil {
return err
}
return nil
}
// RemoveDir issues a RMD FTP command to remove the specified directory from // RemoveDir issues a RMD FTP command to remove the specified directory from
// the remote FTP server. // the remote FTP server.
func (c *ServerConn) RemoveDir(path string) error { func (c *ServerConn) RemoveDir(path string) error {