Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for DstFilePath (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/os-reliable.go

    // the operation.
    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 {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 5.8K bytes
    - Click Count (0)
Back to Top