mirror of
				https://github.com/NVIDIA/nvidia-container-toolkit
				synced 2025-06-26 18:18:24 +00:00 
			
		
		
		
	Ensure output folder exists for CDI spec
Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
		
							parent
							
								
									f0bcfa0415
								
							
						
					
					
						commit
						584e792a5a
					
				| @ -117,6 +117,10 @@ func (m command) run(c *cli.Context, cfg *config) error { | ||||
| 	if cfg.output == "" { | ||||
| 		outputTo = os.Stdout | ||||
| 	} else { | ||||
| 		err := createParentDirsIfRequired(cfg.output) | ||||
| 		if err != nil { | ||||
| 			return fmt.Errorf("failed to create parent folders for output file: %v", err) | ||||
| 		} | ||||
| 		outputFile, err := os.Create(cfg.output) | ||||
| 		if err != nil { | ||||
| 			return fmt.Errorf("failed to create output file: %v", err) | ||||
| @ -594,3 +598,14 @@ func (m command) generateDeviceFolderPermissionHooks(nvidiaCTKPath string, devic | ||||
| 
 | ||||
| 	return hooks, nil | ||||
| } | ||||
| 
 | ||||
| // createParentDirsIfRequired creates the parent folders of the specified path if requried.
 | ||||
| // Note that MkdirAll does not specifically check whether the specified path is non-empty and raises an error if it is.
 | ||||
| // The path will be empty if filename in the current folder is specified, for example
 | ||||
| func createParentDirsIfRequired(filename string) error { | ||||
| 	dir := filepath.Dir(filename) | ||||
| 	if dir == "" { | ||||
| 		return nil | ||||
| 	} | ||||
| 	return os.MkdirAll(dir, 0755) | ||||
| } | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user