You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blobporter.go
+6-19Lines changed: 6 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -9,14 +9,13 @@ import (
9
9
"os"
10
10
"strconv"
11
11
"sync/atomic"
12
-
"time"
13
12
14
13
"github.com/Azure/blobporter/pipeline"
15
14
"github.com/Azure/blobporter/transfer"
16
15
"github.com/Azure/blobporter/util"
17
16
)
18
17
19
-
constprogramVersion="0.6.03"
18
+
constprogramVersion="0.6.05"
20
19
21
20
varargsUtilparamParserValidator
22
21
@@ -46,7 +45,7 @@ func init() {
46
45
dupcheckLevelMsg="Desired level of effort to detect duplicate data to minimize upload size.\n\tMust be one of "+transfer.DupeCheckLevelStr
47
46
transferDefMsg="Defines the type of source and target in the transfer.\n\tMust be one of:\n\tfile-blockblob, file-pageblob, http-blockblob, http-pageblob, blob-file,\n\tpageblock-file (alias of blob-file), blockblob-file (alias of blob-file)\n\tor http-file."
48
47
exactNameMatchMsg="If set or true only blobs that match the name exactly will be downloaded."
49
-
keepDirStructureMsg="Keeps the directory structure from the source.\n\tNot applicable when the source is a HTTP endpoint."
48
+
removeDirStructureMsg="If set the directory structure from the source won't be kept.\n\tNot applicable when the source is a HTTP endpoint."
50
49
numberOfHandlersPerFileMsg="Number of open handles for concurrent reads and writes per file."
51
50
numberOfFilesInBatchMsg="Maximum number of files in a transfer.\n\tIf the number is exceeded new transfers are created"
fmt.Printf("\nBatch transfer (%v).\nFiles per Batch: %v.\nBatch: %v of %v\n ", argsUtil.params.transferType, len(sourcesInfo), batchNumber+1, numOfBatches)
0 commit comments