MCPcopy Create free account
hub / github.com/Super-long/ChubbyGo / RecursionDisplay

Function RecursionDisplay

BaseServer/fileSystem.go:451–456  ·  view source on GitHub ↗

* * @brief: Debug用,显示当前目录树的全部文件名 */

(Fsn *FileSystemNode)

Source from the content-addressed store, hash-verified

449 * @brief: Debug用,显示当前目录树的全部文件名
450 */
451func RecursionDisplay(Fsn *FileSystemNode) {
452 fmt.Println(Fsn.nowPath)
453 for _, value := range Fsn.next {
454 RecursionDisplay(value)
455 }
456}
457
458/*
459 * @brief: Debug用,输出间隔符号

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected