golang标准库之path/filepath

作者: adm 分类: go 发布时间: 2023-10-03
package main

import (
    "fmt"
    "os"
    "path/filepath"
)

func WalkFunc(path string, info os.FileInfo, err error) error {
    fmt.Println("File:", path, "IsDir:", info.IsDir(), "size:", info.Size())
    return nil
}

func main() {
    // func IsAbs(path string) bool
    // IsAbs返回路径是否是一个绝对路径
    fmt.Println(filepath.IsAbs("/dev/null")) // false

    // func Abs(path string) (string, error)
    // Abs函数返回path代表的绝对路径,如果path不是绝对路径,会加入当前工作目录以使之成为绝对路径。因为硬链接的存在,不能保证返回的绝对路径是唯一指向该地址的绝对路径。
    fmt.Println(filepath.Abs("/dev/null")) // D:\dev\null 

    // func Rel(basepath, targpath string) (string, error)
    // 返回targpath相对于basepath的路径,如果两个参数一个是相对路径而另一个是绝对路径,或者targpath无法表示为相对于basepath的路径,将返回错误
    paths := []string{
        "/a/b/c",
        "/b/c",
        "./b/c",
    }
    base := "/a"
    fmt.Println("On Win7:")
    for _, p := range paths {
        rel, err := filepath.Rel(base, p)
        fmt.Printf("%q: %q %v\n", p, rel, err)
    }
    // "/a/b/c": "b\\c" 
    // "/b/c": "..\\b\\c" 
    // "./b/c": "" Rel: can't make ./b/c relative to /a

    // func SplitList(path string) []string
    // 将PATH或GOPATH等环境变量里的多个路径分割开
    path := "C:/CEVA-ToolBox/V10/CEVA-XC;C:/SmartNcode/V9.2/CEVA-X16;C:/CEVA-ToolBox/V10/license;;C:/Users/z17222/go/bin"
    for i, item := range filepath.SplitList(path) {
        fmt.Println(i, item)
    }
    // 0 C:/CEVA-ToolBox/V10/CEVA-XC
    // 1 C:/SmartNcode/V9.2/CEVA-X16
    // 2 C:/CEVA-ToolBox/V10/license
    // 3
    // 4 C:/Users/z17222/go/bin

    // 类似path包的函数
    // func Split(path string) (dir, file string)
    // func Join(elem ...string) string
    // func Dir(path string) string
    // func Base(path string) string
    // func Ext(path string) string
    // func Clean(path string) string
    // func Match(pattern, name string) (matched bool, err error)

    // func FromSlash(path string) string
    // 将path中的斜杠('/')替换为路径分隔符并返回替换结果,多个斜杠会替换为多个路径分隔符。
    fmt.Println(filepath.FromSlash("C:/Users/z17222/Desktop")) // C:\Users\z17222\Desktop
    // func ToSlash(path string) string
    // 将path中的路径分隔符替换为斜杠('/')并返回替换结果,多个路径分隔符会替换为多个斜杠。
    fmt.Println(filepath.ToSlash("C:/Users/z17222/Desktop")) // C:\Users\z17222\Desktop

    // func VolumeName(path string) (v string)
    // VolumeName函数返回最前面的卷名。如Windows系统里提供参数"C:\foo\bar"会返回"C:";Unix/linux系统的"\\host\share\foo"会返回"\\host\share";其他平台会返回""。
    fmt.Println(filepath.VolumeName("C:/Users/z17222/Desktop")) // C:
    fmt.Println(filepath.VolumeName("/host/share/foo"))         // 空

    // func EvalSymlinks(path string) (string, error)
    // 返回链接(快捷方式)所指向的实际文件。如果path和返回值都是相对路径,会相对于当前目录;除非两个路径其中一个是绝对路径。
    fmt.Println(filepath.EvalSymlinks("C:/Users/Public/Desktop/Visual Studio Code.lnk")) // fixme:无法返回Visual Studio Code.lnk指向的实际地址

    // func Glob(pattern string) (matches []string, err error)
    // Glob函数返回所有匹配模式匹配字符串pattern的文件或者nil(如果没有匹配的文件)。pattern的语法和Match函数相同。pattern可以描述多层的名字,如/usr/*/bin/ed(假设路径分隔符是'/')
    fmt.Println(filepath.Glob("e*")) // [endian_convert.exe endian_convert.go extract.exe extract.go] 

    filepath.Walk("E:/Tools/blackBox_2.0", WalkFunc)
    // File: E:/Tools/blackBox_2.0 IsDir: true size: 4096
    // File: E:\Tools\blackBox_2.0\B-BOX.py IsDir: false size: 20265
    // File: E:\Tools\blackBox_2.0\CALL_TREE_FUNCTIONS.txt IsDir: false size: 0
}

如果觉得我的文章对您有用,请随意赞赏。您的支持将鼓励我继续创作!