1
0
mirror of https://github.com/dutchcoders/transfer.sh.git synced 2020-11-18 19:53:40 -08:00

Escape quoting chars in filename for gdrive

This commit is contained in:
Andrea Spacca 2018-07-13 06:29:34 +02:00
parent 2f1de6fdb3
commit e7051e9b31

View File

@ -21,6 +21,7 @@ import (
"google.golang.org/api/googleapi"
"io/ioutil"
"net/http"
"strings"
)
type Storage interface {
@ -391,6 +392,9 @@ func (s *GDrive) list(nextPageToken string, q string) (*drive.FileList, error) {
}
func (s *GDrive) findId(filename string, token string) (string, error) {
filename = strings.Replace(filename, `'`, `\'`, -1)
filename = strings.Replace(filename, `"`, `\"`, -1)
fileId, tokenId, nextPageToken := "", "", ""
q := fmt.Sprintf("'%s' in parents and name='%s' and mimeType='%s' and trashed=false", s.rootId, token, GDriveDirectoryMimeType)