This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathmkdir.go
124 lines (114 loc) · 3.12 KB
/
mkdir.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
//
// mkdir.go
// Copyright(c)2014-2015 Google, Inc.
//
// This file is part of skicka.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package main
import (
"fmt"
"github.com/google/skicka/gdrive"
"os"
"path"
"path/filepath"
"strings"
"time"
)
func mkdirUsage() {
fmt.Printf("Usage: skicka mkdir [-p] drive_path ...\n")
fmt.Printf("Run \"skicka help\" for more detailed help text.\n")
os.Exit(1)
}
func mkdir(args []string) int {
if len(args) == 0 {
mkdirUsage()
}
i := 0
makeIntermediate := false
if args[0] == "-p" {
makeIntermediate = true
i++
} else if args[0][0] == '-' {
mkdirUsage()
}
errs := 0
for ; i < len(args); i++ {
drivePath := filepath.Clean(args[i])
parent, err := gd.GetFile(string(os.PathSeparator))
if err != nil {
fmt.Fprintf(os.Stderr, "skicka: %c: no such directory\n",
os.PathSeparator)
errs++
break
}
dirs := strings.Split(drivePath, string(os.PathSeparator))
nDirs := len(dirs)
pathSoFar := ""
// Walk through the directories in the path in turn.
for index, dir := range dirs {
if dir == "" {
// The first string in the split is "" if the
// path starts with a '/'.
continue
}
pathSoFar = path.Join(pathSoFar, dir)
// Get the Drive File file for our current point in the path.
file, err := gd.GetFile(pathSoFar)
if err != nil {
if err == gdrive.ErrNotExist {
// File not found; create the folder if we're at the last
// directory in the provided path or if -p was specified.
// Otherwise, error time.
if index+1 == nDirs || makeIntermediate {
var proplist []gdrive.Property
proplist = append(proplist, gdrive.Property{Key: "Permissions",
Value: fmt.Sprintf("%#o", 0755&os.ModePerm)})
parent, err = gd.CreateFolder(dir, parent, time.Now(), proplist)
debug.Printf("Creating folder %s", pathSoFar)
if err != nil {
fmt.Fprintf(os.Stderr, "skicka: %s: %v\n", pathSoFar, err)
errs++
break
}
} else {
fmt.Fprintf(os.Stderr, "skicka: %s: no such directory\n",
pathSoFar)
errs++
break
}
} else {
fmt.Fprintf(os.Stderr, "skicka: %s: %v\n", pathSoFar, err)
errs++
break
}
} else {
// Found it; if it's a folder this is good, unless it's
// the folder we were supposed to be creating.
if index+1 == nDirs && !makeIntermediate {
fmt.Fprintf(os.Stderr, "skicka: %s: already exists\n", pathSoFar)
errs++
break
} else if !file.IsFolder() {
fmt.Fprintf(os.Stderr, "skicka: %s: not a folder\n", pathSoFar)
errs++
break
} else {
parent = file
}
}
}
}
return errs
}