How to convert .stp to .xlsx on a Mac

1 visualización (últimos 30 días)
NH
NH el 25 de Mzo. de 2013
Hello,
I am running the following code in order to convert many .stp files to .xlsx:
files=dir('*.stp')
for i=1:length(files)
filename=files(i).name;
[pathstr, name, ext] = fileparts(filename);
copyfile(filename, fullfile(pathstr, [name '.xlsx']))
end
The resulting .xlsx files do not open in Excel. The error reads: "This file format or file extension is not valid. Verify that the file has not been corrupted and that the file extension matches the format of the file." When converting to .xls, it works perfectly, but I need .xlsx.
I have tried the following with no success:
-Converting to a different format (i.e. .xls, .csv, .txt), and then to .xlsx
-Reading the .stp data into Matlab variables, and using xlswrite. This does not work because I am using a Mac and thus have limited capabilities with xlswrite.
Any help is greatly appreciated.
  3 comentarios
NH
NH el 25 de Mzo. de 2013
The .stp file is an output file from LabView.
Walter Roberson
Walter Roberson el 25 de Mzo. de 2013
I do find a small number of mentions of .STP files for LabView, but not much at all. Would it be possible for you to upload a small one?

Iniciar sesión para comentar.

Respuestas (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by