mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 03:07:45 +08:00
33 lines
717 B
Go
33 lines
717 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gfile_test
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/v2/os/gfile"
|
|
)
|
|
|
|
func ExampleSearch() {
|
|
// init
|
|
var (
|
|
fileName = "gflie_example.txt"
|
|
tempDir = gfile.TempDir("gfile_example_search")
|
|
tempFile = gfile.Join(tempDir, fileName)
|
|
)
|
|
|
|
// write contents
|
|
gfile.PutContents(tempFile, "goframe example content")
|
|
|
|
// search file
|
|
realPath, _ := gfile.Search(fileName, tempDir)
|
|
fmt.Println(gfile.Basename(realPath))
|
|
|
|
// Output:
|
|
// gflie_example.txt
|
|
}
|