Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CheckFilePath (0.12 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/module.go

    // (The excluded punctuation characters, " * < > ? ` ' | / \ and :,
    // have special meanings in certain shells or operating systems.)
    //
    // CheckFilePath may be less restrictive in the future, but see the
    // top-level package documentation for additional information about
    // subtleties of Unicode.
    func CheckFilePath(path string) error {
    	if err := checkPath(path, filePath); err != nil {
    		return &InvalidPathError{Kind: "file", Path: path, Err: err}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top