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