Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkPathLength (0.09 sec)

  1. cmd/os-reliable.go

    func renameAll(srcFilePath, dstFilePath, baseDir string) (err error) {
    	if srcFilePath == "" || dstFilePath == "" {
    		return errInvalidArgument
    	}
    
    	if err = checkPathLength(srcFilePath); err != nil {
    		return err
    	}
    	if err = checkPathLength(dstFilePath); err != nil {
    		return err
    	}
    
    	if err = reliableRename(srcFilePath, dstFilePath, baseDir); err != nil {
    		switch {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top