2015-02-03 20:18:19 +00:00
|
|
|
package restic
|
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
2015-04-25 00:36:54 +00:00
|
|
|
func (node *Node) OpenForReading() (*os.File, error) {
|
|
|
|
return os.Open(n.path)
|
|
|
|
}
|
|
|
|
|
2015-04-24 23:39:32 +00:00
|
|
|
func (node *Node) fillExtra(path string, fi os.FileInfo) error {
|
2015-02-03 20:18:19 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (node *Node) createDevAt(path string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (node *Node) createCharDevAt(path string) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (node *Node) createFifoAt(path string) error {
|
|
|
|
return nil
|
|
|
|
}
|