本文整理汇总了Golang中github.com/amkimian/pmfs/fs.RootFileSystem.Format方法的典型用法代码示例。如果您正苦于以下问题:Golang RootFileSystem.Format方法的具体用法?Golang RootFileSystem.Format怎么用?Golang RootFileSystem.Format使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/amkimian/pmfs/fs.RootFileSystem
的用法示例。
在下文中一共展示了RootFileSystem.Format方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: main
func main() {
fmt.Println("Starting PMFS")
// Mount a memory root file system
// Add some content, read it back
var f fs.RootFileSystem
var mh memory.MemoryFileSystem
f.Init(&mh, "")
go func() {
for msg := range f.Notification {
fmt.Println(msg)
}
}()
f.Format(100, 100)
f.WriteFile("/test/alan", []byte("Hello world this is a test"))
f.AppendFile("/test/alan", []byte("\nThis is line 2, part of version 2"))
f.AppendFile("/test/other", []byte("\nA new file"))
f.AppendFile("/other/one", []byte("\nHere we go again"))
f.AppendFile("/other/three", []byte("\nHello world"))
names, _ := f.ListDirectory("/test")
for y := range names {
fmt.Println(names[y])
}
x, err := f.ReadFile("/test/alan")
if err != nil {
fmt.Println(err)
} else {
fmt.Printf("Data is %v\n", string(x))
}
fn, e2 := f.StatFile("/test/alan")
if e2 != nil {
fmt.Println(e2)
} else {
stats := fn.Stats
fmt.Printf("Created : %v\nModified : %v\nAccessed : %v\n", stats.Created, stats.Modified, stats.Accessed)
}
go web.StartAPIServer(&f)
web.StartWebServer()
}