Vertaling van "import-csv" in Spaans
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.
Remember you can read more by typing get-help get-content -full and get-help import-csv -full
Puedes obtener más información escribiendo get-help get-content -full y get-help import-csv -full
C:\PS>".\processes.csv" | import-csv This command imports the objects from the Processes.csv file.
C:\PS>".\processes.csv" | import-csv Descripción - Este comando importa los objetos del archivo Processes.csv. Vea también Export-CSV
Otherwise, Import-CSV creates an extra object from the items in the header row.
De lo contrario, Import-CSV crea un objeto adicional a partir de los elementos en la fila de encabezado.
Import-Csv creates a table-like custom object using the data and headings from a csv file.
Import-Csv crea un objeto personalizado similar a una tabla que utiliza los datos y los encabezados tomados de un archivo csv.
The column header determines the names of the properties of the object that Import-CSV creates.
El encabezado de columna determina los nombres de las propiedades del objeto que Import-CSV crea.
You can then use the Import-CSV cmdlet to re-create objects from the CSV strings in the files.
A continuación, puede usar el cmdlet Import-CSV para volver a crear objetos a partir de las cadenas CSV del archivo.
The objects that Import-CSV creates are CSV versions of the original objects.
Los objetos creados por Import-CSV son versiones CSV de los objetos originales.
Import-CSV returns the objects described by the content in the CSV file. Notes
Import-CSV devuelve los objetos descritos por el contenido del archivo CSV. Notas
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.
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.
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.
Estos cmdlets son iguales que los cmdlets Export-CSV e Import-CSV, excepto en que no guardan las cadenas CSV en un archivo.
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.
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 also use the Export-CSV and Import-CSV cmdlets to convert objects to CSV strings in a file (and back).
También puede utilizar los cmdlets Export-CSV e Import-CSV para convertir los objetos en cadenas CSV en un archivo (y viceversa).
The Import-CSV cmdlet creates objects from CSV variable-length files that are generated by the Export-CSV cmdlet.
El cmdlet Import-CSV crea objetos a partir de archivos CSV de longitud variable generados por el cmdlet Export-CSV.