How to convert .stp to .xlsx on a Mac

5 次查看(过去 30 天)
NH
NH 2013-3-25
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 个评论
NH
NH 2013-3-25
The .stp file is an output file from LabView.
Walter Roberson
Walter Roberson 2013-3-25
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?

请先登录,再进行评论。

回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by