easier for client to delete file

This commit is contained in:
Chris Lu
2013-08-14 00:31:02 -07:00
parent d5e7c1de0a
commit 48e4ced29d
3 changed files with 22 additions and 9 deletions

View File

@@ -2,9 +2,24 @@ package operation
import (
"code.google.com/p/weed-fs/go/glog"
"code.google.com/p/weed-fs/go/storage"
"net/http"
)
func DeleteFile(server string, fileId string) (error) {
fid, parseErr := storage.ParseFileId(fileId)
if parseErr != nil {
return parseErr
}
lookup, lookupError := Lookup(server,fid.VolumeId)
if lookupError != nil {
return lookupError
}
if len(lookup.Locations) == 0 {
return nil
}
return Delete("http://"+lookup.Locations[0].PublicUrl+"/"+fileId)
}
func Delete(url string) error {
req, err := http.NewRequest("DELETE", url, nil)
if err != nil {