Vertaling van "import-csv" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Puedes obtener más información escribiendo get-help get-content -full y get-help import-csv -full
Remember you can read more by typing get-help get-content -full and get-help import-csv -full
C:\PS>".\processes.csv" | import-csv Descripción - Este comando importa los objetos del archivo Processes.csv. Vea también Export-CSV
C:\PS>".\processes.csv" | import-csv This command imports the objects from the Processes.csv file.
De lo contrario, Import-CSV crea un objeto adicional a partir de los elementos en la fila de encabezado.
Otherwise, Import-CSV creates an extra object from the items in the header row.
Import-Csv crea un objeto personalizado similar a una tabla que utiliza los datos y los encabezados tomados de un archivo csv.
Import-Csv creates a table-like custom object using the data and headings from a csv file.
El encabezado de columna determina los nombres de las propiedades del objeto que Import-CSV crea.
The column header determines the names of the properties of the object that Import-CSV creates.
A continuación, puede usar el cmdlet Import-CSV para volver a crear objetos a partir de las cadenas CSV del archivo.
You can then use the Import-CSV cmdlet to re-create objects from the CSV strings in the files.
Los objetos creados por Import-CSV son versiones CSV de los objetos originales.
Import-CSV devuelve los objetos descritos por el contenido del archivo CSV. Notas
Import-CSV returns the objects described by the content in the CSV file. Notes
El sexto comando usa el cmdlet Import-CSV para importar el archivo Jobs.csv y convertir las cadenas CSV en una versión CSV del objeto de trabajo.
The sixth command uses the Import-CSV cmdlet to import the Jobs.csv file and convert the CSV strings into a CSV version of the job object.
Estos cmdlets son iguales que los cmdlets Export-CSV e Import-CSV, excepto en que no guardan las cadenas CSV en un archivo.
These cmdlets are the same as the Export-CSV and Import-CSV cmdlets, except that they do not save the CSV strings in a file.
Puede utilizar Export-CSV para guardar los objetos en un archivo CSV y, a continuación, usar el cmdlet Import-CSV para crear objetos a partir del texto en el archivo CSV.
You can use Export-CSV to save objects in a CSV file and then use the Import-CSV cmdlet to create objects from the text in the CSV file.
También puede utilizar los cmdlets Export-CSV e Import-CSV para convertir los objetos en cadenas CSV en un archivo (y viceversa).
You can also use the Export-CSV and Import-CSV cmdlets to convert objects to CSV strings in a file (and back).
El cmdlet Import-CSV crea objetos a partir de archivos CSV de longitud variable generados por el cmdlet Export-CSV.
The Import-CSV cmdlet creates objects from CSV variable-length files that are generated by the Export-CSV cmdlet.