Home | History | Annotate | Download | only in filepath

Lines Matching full:fsutil

161 // checkVolume8dot3Setting runs "fsutil 8dot3name query c:" command
176 // It appears, on some systems "fsutil 8dot3name query ..." command always
177 // exits with error. Ignore exit code, and look at fsutil output instead.
178 out, _ := exec.Command("fsutil", "8dot3name", "query", vol).CombinedOutput()
182 // Windows 10 version of fsutil has different output message.
185 return fmt.Errorf("fsutil output should contain %q, but is %q", expected, string(out))
196 return fmt.Errorf("unexpected fsutil output: %q", string(out))
202 cmd := []string{"fsutil", "8dot3name", "set", vol}
208 // It appears, on some systems "fsutil 8dot3name set ..." command always
209 // exits with error. Ignore exit code, and look at fsutil output instead.
212 // Windows 10 version of fsutil has different output message.