本文整理汇总了Golang中github.com/google/skicka/gdrive.File类的典型用法代码示例。如果您正苦于以下问题:Golang File类的具体用法?Golang File怎么用?Golang File使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了File类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: getPermissionsAsString
func getPermissionsAsString(driveFile *gdrive.File) (string, error) {
var str string
if driveFile.IsFolder() {
str = "d"
} else {
str = "-"
}
perm, err := getPermissions(driveFile)
if err != nil {
// No permissions are available if the file was uploaded via the
// Drive Web page, for example.
str += "?????????"
} else {
rwx := "rwx"
for i := 0; i < 9; i++ {
if perm&(1<<(8-uint(i))) != 0 {
str += string(rwx[i%3])
} else {
str += "-"
}
}
}
return str, nil
}
开发者ID:clyang,项目名称:skicka,代码行数:25,代码来源:ls.go
示例2: getPermissions
func getPermissions(driveFile *gdrive.File) (os.FileMode, error) {
permStr, err := driveFile.GetProperty("Permissions")
if err != nil {
return 0, err
}
perm, err := strconv.ParseInt(permStr, 8, 16)
return os.FileMode(perm), err
}
开发者ID:VirtualSatai,项目名称:skicka,代码行数:8,代码来源:skicka.go
示例3: getInitializationVector
// Returns the initialization vector (for encryption) for the given file.
// We store the initialization vector as a hex-encoded property in the
// file so that we don't need to download the file's contents to find the
// IV.
func getInitializationVector(driveFile *gdrive.File) ([]byte, error) {
ivhex, err := driveFile.GetProperty("IV")
if err != nil {
return nil, err
}
iv, err := hex.DecodeString(ivhex)
if err != nil {
return nil, err
}
if len(iv) != aes.BlockSize {
return nil, fmt.Errorf("unexpected length of IV %d", len(iv))
}
return iv, nil
}
开发者ID:VirtualSatai,项目名称:skicka,代码行数:18,代码来源:skicka.go
示例4: checkFile
func checkFile(f *gdrive.File) int {
hasSuffix := strings.HasSuffix(f.Path, encryptionSuffix)
_, err := f.GetProperty("IV")
hasIV := err == nil
if hasSuffix && !hasIV {
fmt.Fprintf(os.Stderr, "skicka: %s: has filename suffix \"%s\" but no IV property\n",
f.Path, encryptionSuffix)
return 1
} else if hasIV && !hasSuffix {
fmt.Fprintf(os.Stderr, "skicka: %s: has IV property but no filename suffix \"%s\"\n",
f.Path, encryptionSuffix)
return 1
}
return 0
}
开发者ID:clyang,项目名称:skicka,代码行数:16,代码来源:fsck.go
示例5: isEncrypted
// If a file is encrypted, it should both have the initialization vector used
// to encrypt it stored as a Drive file property and have encryptionSuffix at the end
// of its filename. This function checks both of these and returns an error if
// these indicators are inconsistent; otherwise, it returns true/false
// accordingly.
func isEncrypted(file *gdrive.File) (bool, error) {
if _, err := file.GetProperty("IV"); err == nil {
if strings.HasSuffix(file.Path, encryptionSuffix) {
return true, nil
}
return false, fmt.Errorf("has IV property but doesn't " +
"end with .aes256 suffix")
} else if strings.HasSuffix(file.Path, encryptionSuffix) {
// This could actually happen with an interrupted upload
// with 403 errors and the case where a file is created
// even though a 403 happened, if we don't get to delete
// the file before exiting...
return false, fmt.Errorf("ends with .aes256 suffix but doesn't " +
"have IV property")
}
return false, nil
}
开发者ID:clyang,项目名称:skicka,代码行数:22,代码来源:download.go
示例6: lsFile
// Produce listing output to stdout for a single file.
func lsFile(f *gdrive.File, recursive, long, longlong bool) {
printFilename := f.Path
if !recursive {
printFilename = filepath.Base(printFilename)
}
if f.IsFolder() {
printFilename += string(os.PathSeparator)
}
if !long && !longlong {
fmt.Printf("%s\n", printFilename)
return
}
synctime := f.ModTime
permString, _ := getPermissionsAsString(f)
if longlong {
md5 := f.Md5
if len(md5) != 32 {
md5 = "--------------------------------"
}
fmt.Printf("%s %s %s %s %s\n", permString,
fmtbytes(f.FileSize, true), md5, synctime.Format(time.ANSIC),
printFilename)
if debug {
fmt.Printf("\t[ ")
for _, prop := range f.Properties {
fmt.Printf("%s: %s, ", prop.Key, prop.Value)
}
fmt.Printf("MimeType: %s, ", f.MimeType)
fmt.Printf("id: %s ]\n", f.Id)
}
} else {
fmt.Printf("%s %s %s %s\n", permString, fmtbytes(f.FileSize, true),
synctime.Format(time.ANSIC), printFilename)
}
}
开发者ID:clyang,项目名称:skicka,代码行数:38,代码来源:ls.go
示例7: createMissingProperties
// If we didn't shut down cleanly before, there may be files that
// don't have the various properties we expect. Check for that now
// and patch things up as needed.
func createMissingProperties(f *gdrive.File, mode os.FileMode, encrypt bool) error {
if !f.IsFolder() && encrypt {
if _, err := f.GetProperty("IV"); err != nil {
if f.FileSize == 0 {
// Compute a unique IV for the file.
iv := getRandomBytes(aes.BlockSize)
ivhex := hex.EncodeToString(iv)
debug.Printf("Creating IV property for file %s, "+
"which doesn't have one.", f.Path)
err := gd.AddProperty("IV", ivhex, f)
if err != nil {
return err
}
} else {
// This is state of affairs really shouldn't ever happen, but
// if somehow it does, it's important that we catch it: the
// file is missing the IV property, but has some
// contents. Presumably the IV is at the start of the file
// contents and we could initialize the property from that
// here, but any successfully created file should already have
// the property, so we'll just error out, since it's not clear
// what's going on here...
return fmt.Errorf("encrypted file on Drive is missing" +
"IV property, but has non-zero length. Can't create the IV " +
"property without examining file contents.")
}
}
}
if _, err := f.GetProperty("Permissions"); err != nil {
debug.Printf("Creating Permissions property for file %s, "+
"which doesn't have one.", f.Path)
err := gd.AddProperty("Permissions", fmt.Sprintf("%#o", mode&os.ModePerm), f)
if err != nil {
return err
}
}
return nil
}
开发者ID:chendijun2010,项目名称:skicka,代码行数:42,代码来源:upload.go
注:本文中的github.com/google/skicka/gdrive.File类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论