-
Notifications
You must be signed in to change notification settings - Fork 23
/
createdir.go
59 lines (50 loc) · 1.53 KB
/
createdir.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
package cmd
import (
"fmt"
"os"
"github.com/0chain/gosdk/constants"
"github.com/0chain/gosdk/zboxcore/sdk"
"github.com/spf13/cobra"
)
var createDirCmd = &cobra.Command{
Use: "createdir",
Short: "Create directory",
Long: `Create directory`,
Args: cobra.MinimumNArgs(0),
Run: func(cmd *cobra.Command, args []string) {
fflags := cmd.Flags() // fflags is a *flag.FlagSet
if !fflags.Changed("allocation") { // check if the flag "path" is set
PrintError("Error: allocation flag is missing") // If not, we'll let the user know
os.Exit(1) // and return
}
if !fflags.Changed("dirname") {
PrintError("Error: dirname flag is missing")
os.Exit(1)
}
allocationID := cmd.Flag("allocation").Value.String()
allocationObj, err := sdk.GetAllocation(allocationID)
if err != nil {
PrintError("Error fetching the allocation", err)
os.Exit(1)
}
dirname := cmd.Flag("dirname").Value.String()
err = allocationObj.DoMultiOperation([]sdk.OperationRequest{
{
OperationType: constants.FileOperationCreateDir,
RemotePath: dirname,
},
})
if err != nil {
PrintError("Directory creation failed.", err)
os.Exit(1)
}
fmt.Println(dirname + " directory created")
},
}
func init() {
rootCmd.AddCommand(createDirCmd)
createDirCmd.PersistentFlags().String("allocation", "", "Allocation ID")
createDirCmd.PersistentFlags().String("dirname", "", "New directory name")
createDirCmd.MarkFlagRequired("allocation")
createDirCmd.MarkFlagRequired("dirname")
}